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.
- package/package.json +1 -1
- package/src/cli.js +2 -2
package/package.json
CHANGED
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.
|
|
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:
|
|
154
|
+
initial: true
|
|
155
155
|
})
|
|
156
156
|
}
|
|
157
157
|
|