Skip to content

Commit cccd35e

Browse files
committed
refactor: remove dependency on symbol-observable
1 parent 7a67752 commit cccd35e

File tree

10 files changed

+0
-36
lines changed

10 files changed

+0
-36
lines changed

Diff for: eslint.config.mjs

-8
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,6 @@ export default [
121121
'import/newline-after-import': 'error',
122122
'import/no-absolute-path': 'error',
123123
'import/no-duplicates': 'error',
124-
125-
'import/no-unassigned-import': [
126-
'error',
127-
{
128-
allow: ['symbol-observable'],
129-
},
130-
],
131-
132124
'import/order': [
133125
'error',
134126
{

Diff for: package.json

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@
135135
"semver": "7.7.1",
136136
"shelljs": "^0.9.0",
137137
"source-map-support": "0.5.21",
138-
"symbol-observable": "4.0.0",
139138
"tar": "^7.0.0",
140139
"ts-node": "^10.9.1",
141140
"tslib": "2.8.1",

Diff for: packages/angular/cli/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ ts_project(
6969
"//:node_modules/@types/yarnpkg__lockfile",
7070
"//:node_modules/listr2",
7171
"//:node_modules/semver",
72-
"//:node_modules/symbol-observable",
7372
],
7473
)
7574

Diff for: packages/angular/cli/lib/init.ts

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
import 'symbol-observable';
10-
// symbol polyfill must go first
119
import { readFile } from 'node:fs/promises';
1210
import { createRequire } from 'node:module';
1311
import * as path from 'node:path';

Diff for: packages/angular/cli/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"pacote": "20.0.0",
3838
"resolve": "1.22.10",
3939
"semver": "7.7.1",
40-
"symbol-observable": "4.0.0",
4140
"yargs": "17.7.2"
4241
},
4342
"ng-update": {

Diff for: packages/angular_devkit/architect_cli/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
1919
"ansi-colors": "4.1.3",
2020
"progress": "2.0.3",
21-
"symbol-observable": "4.0.0",
2221
"yargs-parser": "21.1.1"
2322
},
2423
"devDependencies": {

Diff for: packages/angular_devkit/schematics_cli/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ ts_project(
5252
"//:node_modules/@types/node",
5353
"//:node_modules/@types/yargs-parser",
5454
"//:node_modules/ansi-colors",
55-
"//:node_modules/symbol-observable",
5655
"//:node_modules/yargs-parser",
5756
],
5857
)

Diff for: packages/angular_devkit/schematics_cli/bin/schematics.ts

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
* found in the LICENSE file at https://angular.dev/license
88
*/
99

10-
// symbol polyfill must go first
11-
import 'symbol-observable';
1210
import { JsonValue, logging, schema } from '@angular-devkit/core';
1311
import { ProcessOutput, createConsoleLogger } from '@angular-devkit/core/node';
1412
import { UnsuccessfulWorkflowExecution } from '@angular-devkit/schematics';

Diff for: packages/angular_devkit/schematics_cli/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"@angular-devkit/schematics": "workspace:0.0.0-PLACEHOLDER",
2121
"@inquirer/prompts": "7.4.0",
2222
"ansi-colors": "4.1.3",
23-
"symbol-observable": "4.0.0",
2423
"yargs-parser": "21.1.1"
2524
}
2625
}

Diff for: pnpm-lock.yaml

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

0 commit comments

Comments
 (0)