File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 7
7
"initialize" : " yarn clone && yarn setup && yarn update" ,
8
8
"clone" : " (git clone https://github.com/angular/angular --depth 1 || true) && cd angular && git fetch origin dd2a650c3455f3bc0a88f8181758a84aacb25fea && git checkout -f FETCH_HEAD" ,
9
9
"setup" : " cd angular && yarn && cd aio && yarn && yarn setup" ,
10
+ "update" : " cd angular/aio && yarn add ../../../../dist/_angular-devkit_build-angular.tgz --dev" ,
10
11
"//" : " Shouldn't need to install the package twice, but the first install seems to leave two @ngtools/webpack installs around." ,
11
- "update " : " cd angular/aio && yarn add ../../../../dist/@angular-devkit_build-angular.tgz --dev && yarn add ../../../../dist/_angular-devkit_build-angular.tgz --dev" ,
12
+ "postupdate " : " cd angular/aio && yarn add ../../../../dist/_angular-devkit_build-angular.tgz --dev" ,
12
13
"benchmark" : " cd angular/aio && benchmark --verbose -- yarn ~~build --configuration=stable"
13
14
},
14
15
"keywords" : [],
Original file line number Diff line number Diff line change @@ -212,7 +212,9 @@ export const packages: PackageMap =
212
212
relative : path . relative ( path . dirname ( __dirname ) , pkgRoot ) ,
213
213
main : path . resolve ( pkgRoot , 'src/index.ts' ) ,
214
214
private : packageJson . private ,
215
- tar : path . join ( distRoot , name . replace ( '/' , '_' ) + '.tgz' ) ,
215
+ // yarn doesn't take kindly to @ in tgz filenames
216
+ // https://github.com/yarnpkg/yarn/issues/6339
217
+ tar : path . join ( distRoot , name . replace ( / \/ | @ / g, '_' ) + '.tgz' ) ,
216
218
bin,
217
219
name,
218
220
packageJson,
You can’t perform that action at this time.
0 commit comments