Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@
"ts-api-guardian": "0.5.0",
"ts-node": "^5.0.0",
"tslib": "^2.0.0",
"tslint": "^6.0.0",
"tslint": "^6.1.3",
"tslint-no-circular-imports": "^0.7.0",
"tslint-sonarts": "1.9.0",
"typescript": "3.9.7",
"typescript": "4.0.2",
"verdaccio": "4.8.1",
"verdaccio-auth-memory": "^9.7.2",
"webpack": "4.44.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@angular/compiler-cli": ">=10.1.0-next.0 < 11",
"@angular/localize": ">=10.1.0-next.0 < 11",
"ng-packagr": "^10.0.0",
"typescript": ">=3.9 < 3.10"
"typescript": ">=3.9 < 4.1"
},
"peerDependenciesMeta": {
"@angular/localize": {
Expand Down
13 changes: 2 additions & 11 deletions packages/angular_devkit/build_optimizer/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ ts_library(
module_name = "@angular-devkit/build-optimizer",
module_root = "src/index.d.ts",
deps = [
"//packages/angular_devkit/build_optimizer/third_party/github.com/Microsoft/TypeScript",
"@npm//@types/node",
"@npm//@types/webpack",
"@npm//@types/webpack-sources",
"@npm//source-map",
"@npm//tslib",
"@npm//typescript",
],
)

Expand All @@ -50,9 +50,9 @@ ts_library(
# @external_begin
deps = [
":build_optimizer",
"//packages/angular_devkit/build_optimizer/third_party/github.com/Microsoft/TypeScript",
"//packages/angular_devkit/core",
"@npm//source-map",
"@npm//typescript",
],
# @external_end
)
Expand All @@ -66,15 +66,6 @@ jasmine_node_test(
],
)

jasmine_node_test(
name = "no_typescript_runtime_dep_test",
srcs = ["no_typescript_runtime_dep_spec.js"],
deps = [
":build_optimizer",
"@npm//jasmine",
],
)

# @external_begin
pkg_npm(
name = "npm_package",
Expand Down

This file was deleted.

1 change: 1 addition & 0 deletions packages/angular_devkit/build_optimizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"loader-utils": "2.0.0",
"source-map": "0.7.3",
"tslib": "2.0.1",
"typescript": "4.0.2",
"webpack-sources": "1.4.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import * as tslib from 'tslib';
import * as ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import * as ts from 'typescript';

const pureFunctionComment = '@__PURE__';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import { RawSourceMap } from 'source-map';
import * as ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import * as ts from 'typescript';

export type TransformerFactoryCreator = (
program?: ts.Program,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import * as ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import * as ts from 'typescript';
import { addPureComment } from '../helpers/ast-utils';

export function testPrefixClasses(content: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import * as ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import * as ts from 'typescript';
import { addPureComment, getCleanHelperName, hasPureComment } from '../helpers/ast-utils';

export function getPrefixFunctionsTransformer(): ts.TransformerFactory<ts.SourceFile> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import * as ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import * as ts from 'typescript';
import { collectDeepNodes } from '../helpers/ast-utils';

export function testScrubFile(content: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import * as ts from '../../third_party/github.com/Microsoft/TypeScript/lib/typescript';
import * as ts from 'typescript';
import { addPureComment } from '../helpers/ast-utils';

function isBlockLike(node: ts.Node): node is ts.BlockLike {
Expand Down

This file was deleted.

This file was deleted.

Loading