create-analog 0.2.5 → 0.2.6
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 +6 -5
- package/package.json +1 -1
- package/template-angular-v15/package.json +3 -2
package/README.md
CHANGED
|
@@ -26,24 +26,25 @@ You can also directly specify the project name and the template you want to use
|
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
# npm 6.x
|
|
29
|
-
npm create analog@latest my-angular-app --template angular-
|
|
29
|
+
npm create analog@latest my-angular-app --template angular-v15
|
|
30
30
|
|
|
31
31
|
# npm 7+, extra double-dash is needed:
|
|
32
|
-
npm create analog@latest my-angular-app -- --template angular-
|
|
32
|
+
npm create analog@latest my-angular-app -- --template angular-v15
|
|
33
33
|
|
|
34
34
|
# yarn
|
|
35
|
-
yarn create analog my-angular-app --template angular-
|
|
35
|
+
yarn create analog my-angular-app --template angular-v15
|
|
36
36
|
|
|
37
37
|
# pnpm
|
|
38
|
-
pnpm create analog my-angular-app --template angular-
|
|
38
|
+
pnpm create analog my-angular-app --template angular-v15
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
Currently supported template presets include:
|
|
42
42
|
|
|
43
|
+
- `angular-v15`
|
|
43
44
|
- `angular-v14`
|
|
44
45
|
|
|
45
46
|
You can use `.` for the project name to scaffold in the current directory.
|
|
46
47
|
|
|
47
48
|
## Credits
|
|
48
49
|
|
|
49
|
-
This project is inspired by `create-vite`.
|
|
50
|
+
This project is inspired by `create-vite`.
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@angular/platform-browser-dynamic": "^15.0.0",
|
|
25
25
|
"@angular/platform-server": "^15.0.0",
|
|
26
26
|
"@angular/router": "^15.0.0",
|
|
27
|
-
"@nrwl/angular": "
|
|
27
|
+
"@nrwl/angular": "^15.7.0",
|
|
28
28
|
"rxjs": "~7.5.6",
|
|
29
29
|
"tslib": "^2.4.0",
|
|
30
30
|
"zone.js": "~0.11.8"
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"@angular-devkit/build-angular": "^15.0.0",
|
|
35
35
|
"@angular/cli": "~15.0.0",
|
|
36
36
|
"@angular/compiler-cli": "^15.0.0",
|
|
37
|
-
"@nrwl/vite": "
|
|
37
|
+
"@nrwl/vite": "^15.7.0",
|
|
38
|
+
"nx": "^15.7.0",
|
|
38
39
|
"jsdom": "^20.0.0",
|
|
39
40
|
"typescript": "~4.8.4",
|
|
40
41
|
"vite": "^4.0.3",
|