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 1
1
language : node_js
2
2
sudo : false
3
3
4
- before_install :
5
- - curl -o- -L https://yarnpkg.com/install.sh | bash
6
- - export PATH=$HOME/.yarn/bin:$PATH
7
-
8
4
node_js :
9
- - ' 6.6.0 '
5
+ - ' 6.9 '
10
6
11
7
env :
12
8
matrix :
Original file line number Diff line number Diff line change @@ -1230,23 +1230,6 @@ export class ProjectService {
1230
1230
const project = new Project ( this , this . psLogger ) ;
1231
1231
project . addRoot ( root ) ;
1232
1232
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
-
1250
1233
project . finishGraph ( ) ;
1251
1234
this . inferredProjects . push ( project ) ;
1252
1235
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