File tree Expand file tree Collapse file tree 3 files changed +5
-22
lines changed Expand file tree Collapse file tree 3 files changed +5
-22
lines changed Original file line number Diff line number Diff line change 11language : node_js
22sudo : false
33
4- before_install :
5- - curl -o- -L https://yarnpkg.com/install.sh | bash
6- - export PATH=$HOME/.yarn/bin:$PATH
7-
84node_js :
9- - ' 6.6.0 '
5+ - ' 6.9 '
106
117env :
128 matrix :
Original file line number Diff line number Diff line change @@ -1230,23 +1230,6 @@ export class ProjectService {
12301230 const project = new Project ( this , this . psLogger ) ;
12311231 project . addRoot ( root ) ;
12321232
1233- let currentPath = getDirectoryPath ( root . fileName ) ;
1234- let parentPath = getDirectoryPath ( currentPath ) ;
1235- while ( currentPath != parentPath ) {
1236- if ( ! project . projectService . directoryWatchersForTsconfig [ currentPath ] ) {
1237- this . log ( "Add watcher for: " + currentPath ) ;
1238- project . projectService . directoryWatchersForTsconfig [ currentPath ] =
1239- this . host . watchDirectory ( currentPath , fileName => this . directoryWatchedForTsconfigChanged ( fileName ) ) ;
1240- project . projectService . directoryWatchersRefCount [ currentPath ] = 1 ;
1241- }
1242- else {
1243- project . projectService . directoryWatchersRefCount [ currentPath ] += 1 ;
1244- }
1245- project . directoriesWatchedForTsconfig . push ( currentPath ) ;
1246- currentPath = parentPath ;
1247- parentPath = getDirectoryPath ( parentPath ) ;
1248- }
1249-
12501233 project . finishGraph ( ) ;
12511234 this . inferredProjects . push ( project ) ;
12521235 return project ;
Original file line number Diff line number Diff line change 1+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+ # yarn lockfile v1
3+
4+
You can’t perform that action at this time.
0 commit comments