@angular/create 18.1.0-next.1 → 18.1.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +13 -6
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Create an Angular CLI workspace
|
|
4
4
|
|
|
5
|
-
Scaffold an Angular CLI workspace without needing to install the Angular CLI globally. All of the [ng new](https://angular.
|
|
5
|
+
Scaffold an Angular CLI workspace without needing to install the Angular CLI globally. All of the [ng new](https://angular.dev/cli/new) options and features are supported.
|
|
6
6
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/create",
|
|
3
|
-
"version": "18.1.0-next.
|
|
3
|
+
"version": "18.1.0-next.3",
|
|
4
4
|
"description": "Scaffold an Angular CLI workspace.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Angular CLI",
|
|
@@ -12,12 +12,11 @@
|
|
|
12
12
|
"schematics",
|
|
13
13
|
"sdk"
|
|
14
14
|
],
|
|
15
|
-
"bin":
|
|
16
|
-
"create": "./src/index.js"
|
|
17
|
-
},
|
|
15
|
+
"bin": "./src/index.js",
|
|
18
16
|
"dependencies": {
|
|
19
|
-
"@angular/cli": "18.1.0-next.
|
|
17
|
+
"@angular/cli": "18.1.0-next.3"
|
|
20
18
|
},
|
|
19
|
+
"packageManager": "yarn@4.3.0",
|
|
21
20
|
"repository": {
|
|
22
21
|
"type": "git",
|
|
23
22
|
"url": "https://github.com/angular/angular-cli.git"
|
|
@@ -32,5 +31,13 @@
|
|
|
32
31
|
"bugs": {
|
|
33
32
|
"url": "https://github.com/angular/angular-cli/issues"
|
|
34
33
|
},
|
|
35
|
-
"homepage": "https://github.com/angular/angular-cli"
|
|
34
|
+
"homepage": "https://github.com/angular/angular-cli",
|
|
35
|
+
"dependenciesMeta": {
|
|
36
|
+
"esbuild": {
|
|
37
|
+
"built": true
|
|
38
|
+
},
|
|
39
|
+
"puppeteer": {
|
|
40
|
+
"built": true
|
|
41
|
+
}
|
|
42
|
+
}
|
|
36
43
|
}
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Copyright Google LLC All Rights Reserved.
|
|
6
6
|
*
|
|
7
7
|
* Use of this source code is governed by an MIT-style license that can be
|
|
8
|
-
* found in the LICENSE file at https://angular.
|
|
8
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
11
|
const child_process_1 = require("child_process");
|