create-what 0.6.2 → 0.6.3

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/index.js +7 -7
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -25,7 +25,7 @@ if (flags.has('--help') || flags.has('-h')) {
25
25
  }
26
26
 
27
27
  if (flags.has('--version') || flags.has('-v')) {
28
- console.log('0.6.2');
28
+ console.log('0.6.3');
29
29
  process.exit(0);
30
30
  }
31
31
 
@@ -38,7 +38,7 @@ if (unknownFlags.length > 0) {
38
38
  const skipPrompts = flags.has('--yes') || flags.has('-y');
39
39
 
40
40
  function printHelp() {
41
- console.log(`create-what 0.6.2
41
+ console.log(`create-what 0.6.3
42
42
 
43
43
  Usage:
44
44
  npx create-what [app-name] [--yes]
@@ -154,18 +154,18 @@ async function gatherOptions() {
154
154
 
155
155
  function generatePackageJson(projectName, { reactCompat, cssApproach }) {
156
156
  const deps = {
157
- 'what-framework': '^0.6.2',
157
+ 'what-framework': '^0.6.3',
158
158
  };
159
159
  const devDeps = {
160
160
  vite: '^6.0.0',
161
- 'what-compiler': '^0.6.2',
162
- 'what-devtools-mcp': '^0.6.2',
161
+ 'what-compiler': '^0.6.3',
162
+ 'what-devtools-mcp': '^0.6.3',
163
163
  '@babel/core': '^7.23.0',
164
164
  };
165
165
 
166
166
  if (reactCompat) {
167
- deps['what-react'] = '^0.6.2';
168
- deps['what-core'] = '^0.6.2';
167
+ deps['what-react'] = '^0.6.3';
168
+ deps['what-core'] = '^0.6.3';
169
169
  // Include zustand as a demo React library
170
170
  deps['zustand'] = '^5.0.0';
171
171
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-what",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "Scaffold a new What Framework project",
5
5
  "type": "module",
6
6
  "bin": {