File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const PKG_DIR = process.cwd();
9
9
const config = JSON . parse ( fs . readFileSync ( 'downstream_projects.json' ) ) ;
10
10
const pkgjson = JSON . parse ( fs . readFileSync ( 'package.json' ) ) ;
11
11
12
- const DOWNSTREAMS_PATH = path . resolve ( PKG_DIR , 'downstream_projects ' ) ;
12
+ const DOWNSTREAMS_PATH = path . resolve ( PKG_DIR , '.downstream_cache ' ) ;
13
13
const UPSTREAM_PKGS = ( process . env . UPSTREAM_PKGS || '' ) . split ( ',' ) . filter ( x => x ) . concat ( pkgjson . name ) ;
14
14
const DOWNSTREAM_PKGS = ( process . env . DOWNSTREAM_PKGS || '' ) . split ( ',' ) . filter ( x => x ) ;
15
15
@@ -36,7 +36,7 @@ function forEachDownstream(callback) {
36
36
function makeWorkingCopy ( ) {
37
37
process . chdir ( PKG_DIR ) ;
38
38
if ( ! fs . existsSync ( DOWNSTREAMS_PATH ) ) {
39
- console . log ( 'making downstream_projects working directory' ) ;
39
+ console . log ( 'making .downstream_cache working directory' ) ;
40
40
fs . mkdirSync ( DOWNSTREAMS_PATH ) ;
41
41
}
42
42
}
You can’t perform that action at this time.
0 commit comments