create-waku 0.4.7 → 0.4.8

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/cli.js +7 -8
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -12,18 +12,17 @@ if (fs.existsSync(dirName)) {
12
12
  }
13
13
 
14
14
  const baseUrl =
15
- "https://raw.githubusercontent.com/dai-shi/waku/v0.12.1/examples/01_counter/";
15
+ "https://raw.githubusercontent.com/dai-shi/waku/v0.13.0/examples/01_counter/";
16
16
 
17
17
  const files = `
18
- entries.ts
19
- index.html
20
- vite.prd.config.ts
21
18
  package.json
22
19
  tsconfig.json
23
- vite.config.ts
24
- src/index.tsx
25
- src/App.tsx
26
- src/Counter.tsx
20
+ src/main.tsx
21
+ src/entries.ts
22
+ src/index.html
23
+ src/components
24
+ src/components/App.tsx
25
+ src/components/Counter.tsx
27
26
  `
28
27
  .split(/\s/)
29
28
  .filter((file) => file);
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "create-waku",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "bin": "./cli.js"
5
5
  }