Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit c696cc4

Browse files
Alan Agiusvikerman
authored andcommitted
build: update angular dependencies
1) With this change we update to the latest pre-release angular dependencies. 2) We also disable Ivy compiler for the current tests 3) Enable dts bundling for universal packages
1 parent ddc4480 commit c696cc4

File tree

16 files changed

+193
-160
lines changed

16 files changed

+193
-160
lines changed

angular-metadata.tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"moduleResolution": "node"
1414
},
1515
"angularCompilerOptions": {
16+
"enableIvy": false,
1617
"enableSummariesForJit": true
1718
},
1819
"include": [

integration/common/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
"url": "https://github.com/angular/angular.git"
99
},
1010
"dependencies": {
11-
"@angular/animations": "^8.0.0-rc.1",
12-
"@angular/common": "^8.0.0-rc.1",
11+
"@angular/animations": "^9.0.0-next.5",
12+
"@angular/common": "^9.0.0-next.5",
1313
"@angular/compiler": "file:../../node_modules/@angular/compiler",
1414
"@angular/compiler-cli": "file:../../node_modules/@angular/compiler-cli",
1515
"@angular/core": "file:../../node_modules/@angular/core",
16-
"@angular/platform-browser": "^8.0.0-rc.1",
17-
"@angular/platform-browser-dynamic": "^8.0.0-rc.1",
18-
"@angular/platform-server": "^8.0.0-rc.1",
16+
"@angular/platform-browser": "^9.0.0-next.5",
17+
"@angular/platform-browser-dynamic": "^9.0.0-next.5",
18+
"@angular/platform-server": "^9.0.0-next.5",
1919
"@nguniversal/common": "file:../../dist/modules-dist/common",
2020
"@nguniversal/express-engine": "file:../../dist/modules-dist/express-engine",
2121
"express": "file:../../node_modules/express",
@@ -24,6 +24,7 @@
2424
"zone.js": "file:../../node_modules/zone.js"
2525
},
2626
"devDependencies": {
27+
"@types/node": "file:../../node_modules/@types/node",
2728
"@types/jasmine": "file:../../node_modules/@types/jasmine",
2829
"babel-core": "^6.23.1",
2930
"babel-loader": "^6.4.0",

integration/common/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"angularCompilerOptions": {
3+
"enableIvy": false,
34
"annotationsAs": "static fields",
45
"annotateForClosureCompiler": true
56
},
6-
77
"compilerOptions": {
88
"module": "es2015",
99
"moduleResolution": "node",

integration/express-engine/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,22 @@
88
"url": "https://github.com/angular/angular.git"
99
},
1010
"dependencies": {
11-
"@angular/animations": "^8.0.0-rc.1",
12-
"@angular/common": "^8.0.0-rc.1",
11+
"@angular/animations": "^9.0.0-next.5",
12+
"@angular/common": "^9.0.0-next.5",
1313
"@angular/compiler": "file:../../node_modules/@angular/compiler",
1414
"@angular/compiler-cli": "file:../../node_modules/@angular/compiler-cli",
1515
"@angular/core": "file:../../node_modules/@angular/core",
16-
"@angular/platform-browser": "^8.0.0-rc.1",
17-
"@angular/platform-browser-dynamic": "^8.0.0-rc.1",
18-
"@angular/platform-server": "^8.0.0-rc.1",
16+
"@angular/platform-browser": "^9.0.0-next.5",
17+
"@angular/platform-browser-dynamic": "^9.0.0-next.5",
18+
"@angular/platform-server": "^9.0.0-next.5",
1919
"@nguniversal/express-engine": "file:../../dist/modules-dist/express-engine",
2020
"express": "file:../../node_modules/express",
2121
"rxjs": "file:../../node_modules/rxjs",
2222
"typescript": "file:../../node_modules/typescript",
2323
"zone.js": "file:../../node_modules/zone.js"
2424
},
2525
"devDependencies": {
26+
"@types/node": "file:../../node_modules/@types/node",
2627
"@types/jasmine": "file:../../node_modules/@types/jasmine",
2728
"babel-core": "^6.23.1",
2829
"babel-loader": "^6.4.0",

integration/express-engine/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"angularCompilerOptions": {
3+
"enableIvy": false,
34
"annotationsAs": "static fields",
45
"annotateForClosureCompiler": true
56
},

integration/hapi-engine/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,22 @@
88
"url": "https://github.com/angular/angular.git"
99
},
1010
"dependencies": {
11-
"@angular/animations": "^8.0.0-rc.1",
12-
"@angular/common": "^8.0.0-rc.1",
11+
"@angular/animations": "^9.0.0-next.5",
12+
"@angular/common": "^9.0.0-next.5",
1313
"@angular/compiler": "file:../../node_modules/@angular/compiler",
1414
"@angular/compiler-cli": "file:../../node_modules/@angular/compiler-cli",
1515
"@angular/core": "file:../../node_modules/@angular/core",
16-
"@angular/platform-browser": "^8.0.0-rc.1",
17-
"@angular/platform-browser-dynamic": "^8.0.0-rc.1",
18-
"@angular/platform-server": "^8.0.0-rc.1",
16+
"@angular/platform-browser": "^9.0.0-next.5",
17+
"@angular/platform-browser-dynamic": "^9.0.0-next.5",
18+
"@angular/platform-server": "^9.0.0-next.5",
1919
"@nguniversal/hapi-engine": "file:../../dist/modules-dist/hapi-engine",
2020
"hapi": "file:../../node_modules/hapi",
2121
"rxjs": "file:../../node_modules/rxjs",
2222
"typescript": "file:../../node_modules/typescript",
2323
"zone.js": "file:../../node_modules/zone.js"
2424
},
2525
"devDependencies": {
26+
"@types/node": "file:../../node_modules/@types/node",
2627
"@types/jasmine": "file:../../node_modules/@types/jasmine",
2728
"babel-core": "^6.23.1",
2829
"babel-loader": "^6.4.0",

integration/hapi-engine/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"angularCompilerOptions": {
3+
"enableIvy": false,
34
"annotationsAs": "static fields",
45
"annotateForClosureCompiler": true
56
},

integration/module-map-ngfactory-loader/package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"url": "https://github.com/angular/angular.git"
99
},
1010
"dependencies": {
11-
"@angular/animations": "^8.0.0-rc.1",
12-
"@angular/common": "^8.0.0-rc.1",
11+
"@angular/animations": "^9.0.0-next.5",
12+
"@angular/common": "^9.0.0-next.5",
1313
"@angular/compiler": "file:../../node_modules/@angular/compiler",
1414
"@angular/compiler-cli": "file:../../node_modules/@angular/compiler-cli",
1515
"@angular/core": "file:../../node_modules/@angular/core",
16-
"@angular/platform-browser": "^8.0.0-rc.1",
17-
"@angular/platform-browser-dynamic": "^8.0.0-rc.1",
18-
"@angular/platform-server": "^8.0.0-rc.1",
19-
"@angular/router": "^8.0.0-rc.1",
16+
"@angular/platform-browser": "^9.0.0-next.5",
17+
"@angular/platform-browser-dynamic": "^9.0.0-next.5",
18+
"@angular/platform-server": "^9.0.0-next.5",
19+
"@angular/router": "^9.0.0-next.5",
2020
"@nguniversal/express-engine": "file:../../dist/modules-dist/express-engine",
2121
"@nguniversal/module-map-ngfactory-loader": "file:../../dist/modules-dist/module-map-ngfactory-loader",
2222
"express": "file:../../node_modules/express",
@@ -25,6 +25,7 @@
2525
"zone.js": "file:../../node_modules/zone.js"
2626
},
2727
"devDependencies": {
28+
"@types/node": "file:../../node_modules/@types/node",
2829
"@types/jasmine": "file:../../node_modules/@types/jasmine",
2930
"babel-core": "^6.23.1",
3031
"babel-loader": "^6.4.0",

integration/module-map-ngfactory-loader/src/helloworld/client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import 'zone.js/dist/zone.js';
1010

11-
import {enableProdMode} from '@angular/core';
1211
import {platformBrowser} from '@angular/platform-browser';
1312
import {HelloWorldModuleNgFactory} from './app.ngfactory';
1413

integration/module-map-ngfactory-loader/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"angularCompilerOptions": {
3+
"enableIvy": false,
34
"annotationsAs": "static fields",
45
"annotateForClosureCompiler": true
56
},

0 commit comments

Comments
 (0)