create-analog 0.1.0 → 0.1.1

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/index.js CHANGED
@@ -194,11 +194,11 @@ async function init() {
194
194
  switch (pkgManager) {
195
195
  case 'yarn':
196
196
  console.log(' yarn')
197
- console.log(' yarn start')
197
+ console.log(' yarn dev')
198
198
  break
199
199
  default:
200
200
  console.log(` ${pkgManager} install`)
201
- console.log(` ${pkgManager} start`)
201
+ console.log(` ${pkgManager} run dev`)
202
202
  break
203
203
  }
204
204
  console.log()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-analog",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Brandon Roberts",
@@ -24,7 +24,7 @@
24
24
  "zone.js": "~0.11.4"
25
25
  },
26
26
  "devDependencies": {
27
- "@analogjs/vite-plugin-angular": "^0.1.0",
27
+ "@analogjs/vite-plugin-angular": "latest",
28
28
  "@angular-devkit/build-angular": "^14.0.3",
29
29
  "@angular/cli": "~14.0.3",
30
30
  "@angular/compiler-cli": "^14.0.0",
@@ -10,6 +10,6 @@
10
10
  "src/polyfills.ts"
11
11
  ],
12
12
  "include": [
13
- "src/**/*.d.ts"
13
+ "src/**/*.ts"
14
14
  ]
15
15
  }