Skip to content

Commit 9a17751

Browse files
author
Angular Builds
committed
ad471a9cd build: update to TypeScript 3.9
1 parent baf2b36 commit 9a17751

Some content is hidden

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

77 files changed

+166
-61
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"name": "@angular-devkit/build-angular",
3-
"version": "0.1000.0-next.5+7.6d0f13b",
3+
"version": "0.1000.0-next.5+19.ad471a9",
44
"description": "Angular Webpack Build Facade",
55
"experimental": true,
66
"main": "src/index.js",
77
"typings": "src/index.d.ts",
88
"builders": "builders.json",
99
"dependencies": {
10-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#6d0f13be7",
11-
"@angular-devkit/build-optimizer": "github:angular/angular-devkit-build-optimizer-builds#6d0f13be7",
12-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#6d0f13be7",
13-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#6d0f13be7",
10+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#ad471a9cd",
11+
"@angular-devkit/build-optimizer": "github:angular/angular-devkit-build-optimizer-builds#ad471a9cd",
12+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#ad471a9cd",
13+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#ad471a9cd",
1414
"@babel/core": "7.9.6",
1515
"@babel/generator": "7.9.6",
1616
"@babel/plugin-transform-runtime": "7.9.6",
1717
"@babel/preset-env": "7.9.6",
1818
"@babel/runtime": "7.9.6",
1919
"@babel/template": "7.8.6",
2020
"@jsdevtools/coverage-istanbul-loader": "3.0.3",
21-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#6d0f13be7",
21+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#ad471a9cd",
2222
"ajv": "6.12.2",
23-
"autoprefixer": "9.7.6",
23+
"autoprefixer": "9.8.0",
2424
"babel-loader": "8.1.0",
2525
"browserslist": "^4.9.1",
2626
"cacache": "15.0.3",
@@ -40,7 +40,7 @@
4040
"loader-utils": "2.0.0",
4141
"mini-css-extract-plugin": "0.9.0",
4242
"minimatch": "3.0.4",
43-
"open": "7.0.3",
43+
"open": "7.0.4",
4444
"parse5": "4.0.0",
4545
"pnp-webpack-plugin": "1.6.4",
4646
"postcss": "7.0.30",
@@ -75,7 +75,7 @@
7575
},
7676
"peerDependencies": {
7777
"@angular/compiler-cli": ">=10.0.0-next.0 < 11",
78-
"typescript": ">=3.6 < 3.9"
78+
"typescript": ">=3.9 < 3.10"
7979
},
8080
"peerDependenciesMeta": {
8181
"@angular/localize": {

plugins/webpack/analytics.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.NgBuildAnalyticsPlugin = exports.countOccurrences = void 0;
34
/**
45
* @license
56
* Copyright Google Inc. All Rights Reserved.

src/angular-cli-files/models/webpack-configs/browser.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.getBrowserConfig = void 0;
34
/**
45
* @license
56
* Copyright Google Inc. All Rights Reserved.

src/angular-cli-files/models/webpack-configs/common.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.getCommonConfig = void 0;
34
/**
45
* @license
56
* Copyright Google Inc. All Rights Reserved.
Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
"use strict";
2-
function __export(m) {
3-
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
2+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3+
if (k2 === undefined) k2 = k;
4+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5+
}) : (function(o, m, k, k2) {
6+
if (k2 === undefined) k2 = k;
7+
o[k2] = m[k];
8+
}));
9+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
10+
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
411
}
512
Object.defineProperty(exports, "__esModule", { value: true });
613
/**
@@ -10,12 +17,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
1017
* Use of this source code is governed by an MIT-style license that can be
1118
* found in the LICENSE file at https://angular.io/license
1219
*/
13-
__export(require("./browser"));
14-
__export(require("./common"));
15-
__export(require("./server"));
16-
__export(require("./styles"));
17-
__export(require("./test"));
18-
__export(require("./typescript"));
19-
__export(require("./utils"));
20-
__export(require("./stats"));
21-
__export(require("./worker"));
20+
__exportStar(require("./browser"), exports);
21+
__exportStar(require("./common"), exports);
22+
__exportStar(require("./server"), exports);
23+
__exportStar(require("./styles"), exports);
24+
__exportStar(require("./test"), exports);
25+
__exportStar(require("./typescript"), exports);
26+
__exportStar(require("./utils"), exports);
27+
__exportStar(require("./stats"), exports);
28+
__exportStar(require("./worker"), exports);

src/angular-cli-files/models/webpack-configs/server.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.getServerConfig = void 0;
34
/**
45
* @license
56
* Copyright Google Inc. All Rights Reserved.

src/angular-cli-files/models/webpack-configs/stats.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* found in the LICENSE file at https://angular.io/license
88
*/
99
Object.defineProperty(exports, "__esModule", { value: true });
10+
exports.getStatsConfig = exports.getWebpackStatsConfig = void 0;
1011
const webpackOutputOptions = {
1112
colors: true,
1213
hash: true,

src/angular-cli-files/models/webpack-configs/styles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* found in the LICENSE file at https://angular.io/license
88
*/
99
Object.defineProperty(exports, "__esModule", { value: true });
10+
exports.getStylesConfig = void 0;
1011
const path = require("path");
1112
const webpack_1 = require("../../plugins/webpack");
1213
const utils_1 = require("./utils");

src/angular-cli-files/models/webpack-configs/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* found in the LICENSE file at https://angular.io/license
88
*/
99
Object.defineProperty(exports, "__esModule", { value: true });
10+
exports.getTestConfig = void 0;
1011
const glob = require("glob");
1112
const path = require("path");
1213
const utils_1 = require("./utils");

src/angular-cli-files/models/webpack-configs/typescript.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.getTypescriptWorkerPlugin = exports.getAotConfig = exports.getNonAotConfig = void 0;
34
/**
45
* @license
56
* Copyright Google Inc. All Rights Reserved.

0 commit comments

Comments
 (0)