File tree 3 files changed +11
-2
lines changed
angular_devkit/build_angular
tests/legacy-cli/e2e/tests/misc
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 57
57
"rxjs" : " 7.8.2"
58
58
},
59
59
"peerDependencies" : {
60
+ "@angular/core" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
60
61
"@angular/compiler" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
61
62
"@angular/compiler-cli" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
62
63
"@angular/localize" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
69
70
"ng-packagr" : " 0.0.0-NG-PACKAGR-PEER-DEP" ,
70
71
"postcss" : " ^8.4.0" ,
71
72
"tailwindcss" : " ^2.0.0 || ^3.0.0 || ^4.0.0" ,
73
+ "tslib" : " ^2.3.0" ,
72
74
"typescript" : " >=5.8 <5.9"
73
75
},
74
76
"peerDependenciesMeta" : {
77
+ "@angular/core" : {
78
+ "optional" : true
79
+ },
75
80
"@angular/localize" : {
76
81
"optional" : true
77
82
},
Original file line number Diff line number Diff line change 73
73
"undici" : " 7.7.0"
74
74
},
75
75
"peerDependencies" : {
76
+ "@angular/core" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
76
77
"@angular/compiler-cli" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
77
78
"@angular/localize" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
78
79
"@angular/platform-browser" : " 0.0.0-ANGULAR-FW-PEER-DEP" ,
90
91
"typescript" : " >=5.8 <5.9"
91
92
},
92
93
"peerDependenciesMeta" : {
94
+ "@angular/core" : {
95
+ "optional" : true
96
+ },
93
97
"@angular/localize" : {
94
98
"optional" : true
95
99
},
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default async function () {
11
11
await updateJsonFile ( 'package.json' , ( json ) => {
12
12
json . dependencies = {
13
13
...json . dependencies ,
14
- 'tslib' : '2.0.0' ,
14
+ 'tslib' : '^ 2.0.0' ,
15
15
'tslib-1' :
'npm:[email protected] ' ,
16
16
'tslib-1-copy' :
'npm:[email protected] ' ,
17
17
} ;
@@ -56,7 +56,7 @@ export default async function () {
56
56
throw new Error ( 'Expected stderr to contain [DedupeModuleResolvePlugin] log for tslib.' ) ;
57
57
}
58
58
59
- await expectFileToMatch ( outFile , './node_modules/tslib/tslib.es6.js ' ) ;
59
+ await expectFileToMatch ( outFile , './node_modules/tslib/tslib.es6.mjs ' ) ;
60
60
} finally {
61
61
await rimraf ( 'node_modules/tslib' ) ;
62
62
await gitClean ( ) ;
You can’t perform that action at this time.
0 commit comments