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