File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ build --symlink_prefix=/
24
24
# Performance: avoid stat'ing input files
25
25
build --watchfs
26
26
27
+ # Turn off legacy external runfiles
28
+ run --nolegacy_external_runfiles
29
+ test --nolegacy_external_runfiles
30
+
27
31
###############################
28
32
# Release support #
29
33
###############################
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export function createTsConfig(options: TsConfigOptions) {
70
70
'tsickleExternsPath' : '' ,
71
71
// we don't copy the node_modules into our tmp dir, so we should look in
72
72
// the original workspace directory for it
73
- 'nodeModulesPrefix' : '../angular/external/ ngdeps/node_modules' ,
73
+ 'nodeModulesPrefix' : '../ngdeps/node_modules' ,
74
74
} ,
75
75
'files' : options . files ,
76
76
'angularCompilerOptions' : {
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export function setupBazelTo(basePath: string) {
136
136
}
137
137
138
138
// Link typescript
139
- const typescriptSource = path . join ( sources , 'angular/external/ ngdeps/node_modules/typescript' ) ;
139
+ const typescriptSource = path . join ( sources , 'ngdeps/node_modules/typescript' ) ;
140
140
const typescriptDest = path . join ( nodeModulesPath , 'typescript' ) ;
141
141
if ( fs . existsSync ( typescriptSource ) ) {
142
142
fs . symlinkSync ( typescriptSource , typescriptDest ) ;
You can’t perform that action at this time.
0 commit comments