Skip to content

Commit fc454f2

Browse files
committed
build: standardize bin script paths and repository.url formats across package.json files
This removed warnings during the releases (cherry picked from commit a19dc73)
1 parent add72f7 commit fc454f2

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"repository": {
2828
"type": "git",
29-
"url": "https://github.com/angular/angular-cli.git"
29+
"url": "git+https://github.com/angular/angular-cli.git"
3030
},
3131
"packageManager": "pnpm@10.30.3",
3232
"engines": {

packages/angular/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "CLI tool for Angular",
55
"main": "lib/cli/index.js",
66
"bin": {
7-
"ng": "./bin/ng.js"
7+
"ng": "bin/ng.js"
88
},
99
"keywords": [
1010
"angular",
@@ -13,7 +13,7 @@
1313
],
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/angular/angular-cli.git"
16+
"url": "git+https://github.com/angular/angular-cli.git"
1717
},
1818
"author": "Angular Authors",
1919
"license": "MIT",

packages/angular/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"code generation",
1010
"schematics"
1111
],
12-
"bin": "./src/index.js",
12+
"bin": "src/index.js",
1313
"dependencies": {
1414
"@angular/cli": "0.0.0-PLACEHOLDER"
1515
}

packages/angular/ssr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
"schematics": "./schematics/collection.json",
4343
"repository": {
4444
"type": "git",
45-
"url": "https://github.com/angular/angular-cli.git"
45+
"url": "git+https://github.com/angular/angular-cli.git"
4646
}
4747
}

packages/angular_devkit/architect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Angular Build Facade",
55
"experimental": true,
66
"bin": {
7-
"architect": "./bin/cli.js"
7+
"architect": "bin/cli.js"
88
},
99
"main": "src/index.js",
1010
"typings": "src/index.d.ts",

packages/angular_devkit/schematics_cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Angular Schematics - CLI",
55
"homepage": "https://github.com/angular/angular-cli",
66
"bin": {
7-
"schematics": "./bin/schematics.js"
7+
"schematics": "bin/schematics.js"
88
},
99
"keywords": [
1010
"blueprints",

packages/ngtools/webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
],
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/angular/angular-cli.git"
16+
"url": "git+https://github.com/angular/angular-cli.git"
1717
},
1818
"author": "angular",
1919
"bugs": {

0 commit comments

Comments
 (0)