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();
99const config = JSON . parse ( fs . readFileSync ( 'downstream_projects.json' ) ) ;
1010const pkgjson = JSON . parse ( fs . readFileSync ( 'package.json' ) ) ;
1111
12- const DOWNSTREAMS_PATH = path . resolve ( PKG_DIR , 'downstream_projects ' ) ;
12+ const DOWNSTREAMS_PATH = path . resolve ( PKG_DIR , '.downstream_cache ' ) ;
1313const UPSTREAM_PKGS = ( process . env . UPSTREAM_PKGS || '' ) . split ( ',' ) . filter ( x => x ) . concat ( pkgjson . name ) ;
1414const DOWNSTREAM_PKGS = ( process . env . DOWNSTREAM_PKGS || '' ) . split ( ',' ) . filter ( x => x ) ;
1515
@@ -36,7 +36,7 @@ function forEachDownstream(callback) {
3636function makeWorkingCopy ( ) {
3737 process . chdir ( PKG_DIR ) ;
3838 if ( ! fs . existsSync ( DOWNSTREAMS_PATH ) ) {
39- console . log ( 'making downstream_projects working directory' ) ;
39+ console . log ( 'making .downstream_cache working directory' ) ;
4040 fs . mkdirSync ( DOWNSTREAMS_PATH ) ;
4141 }
4242}
You can’t perform that action at this time.
0 commit comments