create-sonicjs 2.0.0-alpha.3 → 2.0.0-alpha.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sonicjs",
3
- "version": "2.0.0-alpha.3",
3
+ "version": "2.0.0-alpha.4",
4
4
  "description": "Create a new SonicJS application with zero configuration",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -12,7 +12,7 @@ import validatePackageName from 'validate-npm-package-name'
12
12
  const __dirname = path.dirname(fileURLToPath(import.meta.url))
13
13
 
14
14
  // Version
15
- const VERSION = '2.0.0-alpha.3'
15
+ const VERSION = '2.0.0-alpha.4'
16
16
 
17
17
  // Templates available
18
18
  const TEMPLATES = {
@@ -151,7 +151,7 @@ async function getProjectDetails(initialName) {
151
151
  type: 'confirm',
152
152
  name: 'createResources',
153
153
  message: 'Create Cloudflare resources now? (requires wrangler)',
154
- initial: false
154
+ initial: true
155
155
  })
156
156
  }
157
157