Skip to content

Commit 19463bb

Browse files
jelbournjosephperrott
authored andcommitted
chore: update master to Angular 6.0.0 beta (#10078)
1 parent c975ca8 commit 19463bb

File tree

65 files changed

+118
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+118
-116
lines changed

package-lock.json

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"node": ">= 5.4.1"
2727
},
2828
"dependencies": {
29-
"@angular/animations": "^5.2.3",
30-
"@angular/common": "^5.2.3",
31-
"@angular/compiler": "^5.2.3",
32-
"@angular/core": "^5.2.3",
33-
"@angular/forms": "^5.2.3",
34-
"@angular/platform-browser": "^5.2.3",
29+
"@angular/animations": ">=6.0.0-beta.0 <7.0.0",
30+
"@angular/common": ">=6.0.0-beta.0 <7.0.0",
31+
"@angular/compiler": ">=6.0.0-beta.0 <7.0.0",
32+
"@angular/core": ">=6.0.0-beta.0 <7.0.0",
33+
"@angular/forms": ">=6.0.0-beta.0 <7.0.0",
34+
"@angular/platform-browser": ">=6.0.0-beta.0 <7.0.0",
3535
"core-js": "^2.4.1",
3636
"rxjs": "^5.5.5",
3737
"systemjs": "0.19.43",
@@ -40,12 +40,12 @@
4040
"zone.js": "^0.8.12"
4141
},
4242
"devDependencies": {
43-
"@angular/bazel": "^5.2.3",
44-
"@angular/compiler-cli": "^5.2.3",
45-
"@angular/http": "^5.2.3",
46-
"@angular/platform-browser-dynamic": "^5.2.3",
47-
"@angular/platform-server": "^5.2.3",
48-
"@angular/router": "^5.2.3",
43+
"@angular/bazel": ">=6.0.0-beta.0 <7.0.0",
44+
"@angular/compiler-cli": ">=6.0.0-beta.0 <7.0.0",
45+
"@angular/http": ">=6.0.0-beta.0 <7.0.0",
46+
"@angular/platform-browser-dynamic": ">=6.0.0-beta.0 <7.0.0",
47+
"@angular/platform-server": ">=6.0.0-beta.0 <7.0.0",
48+
"@angular/router": ">=6.0.0-beta.0 <7.0.0",
4949
"@angular/upgrade": "^5.0.1",
5050
"@bazel/ibazel": "0.3.1",
5151
"@google-cloud/storage": "^1.1.1",
@@ -123,7 +123,7 @@
123123
"tsconfig-paths": "^2.3.0",
124124
"tslint": "^5.9.1",
125125
"tsutils": "^2.6.0",
126-
"typescript": "~2.5.3",
126+
"typescript": "~2.6.0",
127127
"uglify-js": "^2.8.14",
128128
"web-animations-js": "^2.2.5"
129129
}

src/cdk-experimental/dialog/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"angularCompilerOptions": {
88
"annotateForClosureCompiler": true,
9-
"strictMetadataEmit": true,
9+
"strictMetadataEmit": false, // Workaround for Angular #22210
1010
"flatModuleOutFile": "index.js",
1111
"flatModuleId": "@angular/material-experimental/dialog",
1212
"skipTemplateCodegen": true,

src/cdk-experimental/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
],
3333
"angularCompilerOptions": {
3434
"annotateForClosureCompiler": true,
35-
"strictMetadataEmit": true,
35+
"strictMetadataEmit": false, // Workaround for Angular #22210
3636
"flatModuleOutFile": "index.js",
3737
"flatModuleId": "@angular/cdk-experimental",
3838
"skipTemplateCodegen": true

src/cdk-experimental/tsconfig-tests.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"types": ["jasmine"]
1111
},
1212
"angularCompilerOptions": {
13-
"strictMetadataEmit": true,
13+
"strictMetadataEmit": false, // Workaround for Angular #22210
1414
"skipTemplateCodegen": true,
1515
"emitDecoratorMetadata": true
1616
},

src/cdk/a11y/key-manager/list-key-manager.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class FakeQueryList<T> extends QueryList<T> {
2727
changes = new Subject<FakeQueryList<T>>();
2828
items: T[];
2929
get length() { return this.items.length; }
30+
set length(_) { /* Empty setter for base class constructor */ }
3031
get first() { return this.items[0]; }
3132
toArray() { return this.items; }
3233
some() { return this.items.some.apply(this.items, arguments); }

src/cdk/a11y/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/a11y",
1111
"skipTemplateCodegen": true,

src/cdk/accordion/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/accordion",
1111
"skipTemplateCodegen": true,

src/cdk/bidi/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/bidi",
1111
"skipTemplateCodegen": true,

src/cdk/coercion/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/coercion",
1111
"skipTemplateCodegen": true,

src/cdk/collections/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/collections",
1111
"skipTemplateCodegen": true,

src/cdk/keycodes/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/keycodes",
1111
"skipTemplateCodegen": true,

src/cdk/layout/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/layout",
1111
"skipTemplateCodegen": true,

src/cdk/observers/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/observers",
1111
"skipTemplateCodegen": true,

src/cdk/overlay/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/overlay",
1111
"skipTemplateCodegen": true,

src/cdk/platform/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/platform",
1111
"skipTemplateCodegen": true,

src/cdk/portal/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/portal",
1111
"skipTemplateCodegen": true,

src/cdk/scrolling/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,
8-
"strictMetadataEmit": true,
8+
"strictMetadataEmit": false, // Workaround for Angular #22210
99
"flatModuleOutFile": "index.js",
1010
"flatModuleId": "@angular/cdk/scrolling",
1111
"skipTemplateCodegen": true,

src/cdk/stepper/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"angularCompilerOptions": {
88
"annotateForClosureCompiler": true,
9-
"strictMetadataEmit": true,
9+
"strictMetadataEmit": false, // Workaround for Angular #22210
1010
"flatModuleOutFile": "index.js",
1111
"flatModuleId": "@angular/cdk/stepper",
1212
"skipTemplateCodegen": true,

src/cdk/table/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"angularCompilerOptions": {
88
"annotateForClosureCompiler": true,
9-
"strictMetadataEmit": true,
9+
"strictMetadataEmit": false, // Workaround for Angular #22210
1010
"flatModuleOutFile": "index.js",
1111
"flatModuleId": "@angular/cdk/table",
1212
"skipTemplateCodegen": true,

src/cdk/testing/tsconfig-test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"angularCompilerOptions": {
99
"annotateForClosureCompiler": true,
10-
"strictMetadataEmit": true,
10+
"strictMetadataEmit": false, // Workaround for Angular #22210
1111
"flatModuleOutFile": "index.js",
1212
"flatModuleId": "@angular/cdk/testing",
1313
"skipTemplateCodegen": true

src/cdk/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"angularCompilerOptions": {
3535
"annotateForClosureCompiler": true,
36-
"strictMetadataEmit": true,
36+
"strictMetadataEmit": false, // Workaround for Angular #22210
3737
"flatModuleOutFile": "index.js",
3838
"flatModuleId": "@angular/cdk",
3939
"skipTemplateCodegen": true,

0 commit comments

Comments
 (0)