Skip to content

Commit cdeb1ab

Browse files
author
Angular Builds
committed
0b7f5d315 build: enable TypeScript useUnknownInCatchVariables compiler option
1 parent 9f9eb1b commit cdeb1ab

16 files changed

+79
-28
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@angular-devkit/build-angular",
3-
"version": "14.1.0-next.0+sha-9b1a36a",
3+
"version": "14.1.0-next.0+sha-0b7f5d3",
44
"description": "Angular Webpack Build Facade",
55
"main": "src/index.js",
66
"typings": "src/index.d.ts",
77
"builders": "builders.json",
88
"dependencies": {
99
"@ampproject/remapping": "2.2.0",
10-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#9b1a36a9d",
11-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#9b1a36a9d",
12-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#9b1a36a9d",
10+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#0b7f5d315",
11+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#0b7f5d315",
12+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#0b7f5d315",
1313
"@babel/core": "7.18.2",
1414
"@babel/generator": "7.18.2",
1515
"@babel/helper-annotate-as-pure": "7.16.7",
@@ -20,7 +20,7 @@
2020
"@babel/runtime": "7.18.3",
2121
"@babel/template": "7.16.7",
2222
"@discoveryjs/json-ext": "0.5.7",
23-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#9b1a36a9d",
23+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#0b7f5d315",
2424
"ansi-colors": "4.1.3",
2525
"babel-loader": "8.2.5",
2626
"babel-plugin-istanbul": "6.1.1",

src/builders/app-shell/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/builders/browser-esbuild/index.js

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/builders/browser/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/builders/protractor/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sass/worker.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/error.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
export declare function assertIsError(value: unknown): asserts value is Error & {
9+
code?: string;
10+
};

src/utils/error.js

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)