create-analog 0.2.4 → 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 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-v14
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-v14
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-v14
35
+ yarn create analog my-angular-app --template angular-v15
36
36
 
37
37
  # pnpm
38
- pnpm create analog my-angular-app --template angular-v14
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-analog",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Brandon Roberts",
@@ -24,6 +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": "^15.7.0",
27
28
  "rxjs": "~7.5.6",
28
29
  "tslib": "^2.4.0",
29
30
  "zone.js": "~0.11.8"
@@ -33,7 +34,8 @@
33
34
  "@angular-devkit/build-angular": "^15.0.0",
34
35
  "@angular/cli": "~15.0.0",
35
36
  "@angular/compiler-cli": "^15.0.0",
36
- "@nrwl/vite": "~15.3.0",
37
+ "@nrwl/vite": "^15.7.0",
38
+ "nx": "^15.7.0",
37
39
  "jsdom": "^20.0.0",
38
40
  "typescript": "~4.8.4",
39
41
  "vite": "^4.0.3",