Skip to content
Open
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
2 changes: 1 addition & 1 deletion .ng-dev/release.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const release = {
name,
experimental,
deprecated: {
version: '>=22.0.0-next.0',
version: '>=22.0.0-rc.0',
Comment thread
alan-agius4 marked this conversation as resolved.
message:
'Angular\'s Webpack support is deprecated. Use the esbuild and Vite-based "@angular/build" package instead.',
},
Expand Down
10 changes: 0 additions & 10 deletions packages/angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,6 @@
"angular-cli",
"Angular CLI"
],
"repository": {
"type": "git",
"url": "git+https://github.com/angular/angular-cli.git"
},
"author": "Angular Authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular-cli/issues"
},
"homepage": "https://github.com/angular/angular-cli",
"dependencies": {
"@angular-devkit/architect": "workspace:0.0.0-EXPERIMENTAL-PLACEHOLDER",
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
Expand Down
8 changes: 1 addition & 7 deletions packages/angular/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
"version": "0.0.0-PLACEHOLDER",
"description": "Angular server side rendering utilities",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/angular/angular-cli",
"keywords": [
"angular",
"ssr",
Expand Down Expand Up @@ -39,9 +37,5 @@
"beasties": "0.4.2"
},
"sideEffects": false,
"schematics": "./schematics/collection.json",
"repository": {
"type": "git",
"url": "git+https://github.com/angular/angular-cli.git"
}
"schematics": "./schematics/collection.json"
}
10 changes: 0 additions & 10 deletions packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,12 @@
"description": "Webpack plugin that AoT compiles your Angular components and modules.",
"main": "./src/index.js",
"typings": "src/index.d.ts",
"license": "MIT",
"keywords": [
"angular",
"webpack",
"plugin",
"aot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/angular/angular-cli.git"
},
"author": "angular",
"bugs": {
"url": "https://github.com/angular/angular-cli/issues"
},
"homepage": "https://github.com/angular/angular-cli/tree/main/packages/ngtools/webpack",
"peerDependencies": {
"@angular/compiler-cli": "0.0.0-ANGULAR-FW-PEER-DEP",
"typescript": ">=6.0 <6.1",
Expand Down
2 changes: 1 addition & 1 deletion tools/package_json_release_filter.jq
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Get the fields from root package.json that should override the project
# package.json, i.e., every field except the following
| ($root
| del(.bin, .description, .dependencies, .name, .main, .peerDependencies, .optionalDependencies, .typings, .version, .private, .workspaces, .resolutions, .scripts, .["ng-update"], .pnpm, .dependenciesMeta)
| del(.bin, .description, .dependencies, .name, .main, .peerDependencies, .optionalDependencies, .typings, .version, .private, .workspaces, .resolutions, .scripts, .["ng-update"], .pnpm, .dependenciesMeta, .packageManager)
Comment thread
alan-agius4 marked this conversation as resolved.
) as $root_overrides

# Use the project package.json as a base and override other fields from root
Expand Down
Loading