create-waku 0.5.0 → 0.5.2
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/dist/cli.js +7744 -0
- package/package.json +2 -1
- package/src/cli.ts +3 -3
- package/template/01_counter/node_modules/.bin/tsc +17 -0
- package/template/01_counter/node_modules/.bin/tsserver +17 -0
- package/template/01_counter/node_modules/.bin/waku +17 -0
- package/template/01_counter/package.json +23 -0
- package/template/01_counter/src/components/App.tsx +13 -0
- package/template/01_counter/src/components/Counter.tsx +14 -0
- package/template/01_counter/src/entries.tsx +34 -0
- package/template/01_counter/src/index.html +36 -0
- package/template/01_counter/src/main.tsx +13 -0
- package/template/01_counter/tsconfig.json +13 -0
- package/template/02_async/node_modules/.bin/tsc +17 -0
- package/template/02_async/node_modules/.bin/tsserver +17 -0
- package/template/02_async/node_modules/.bin/waku +17 -0
- package/template/02_async/package.json +23 -0
- package/template/02_async/src/components/App.tsx +35 -0
- package/template/02_async/src/components/Counter.tsx +14 -0
- package/template/02_async/src/entries.tsx +34 -0
- package/template/02_async/src/index.html +36 -0
- package/template/02_async/src/main.tsx +24 -0
- package/template/02_async/tsconfig.json +13 -0
- package/template/02_async/vite.config.ts +16 -0
- package/template/03_promise/node_modules/.bin/tsc +17 -0
- package/template/03_promise/node_modules/.bin/tsserver +17 -0
- package/template/03_promise/node_modules/.bin/waku +17 -0
- package/template/03_promise/package.json +23 -0
- package/template/03_promise/src/components/App.tsx +18 -0
- package/template/03_promise/src/components/Counter.tsx +34 -0
- package/template/03_promise/src/entries.tsx +39 -0
- package/template/03_promise/src/index.html +36 -0
- package/template/03_promise/src/main.tsx +15 -0
- package/template/03_promise/tsconfig.json +13 -0
- package/template/04_callserver/node_modules/.bin/tsc +17 -0
- package/template/04_callserver/node_modules/.bin/tsserver +17 -0
- package/template/04_callserver/node_modules/.bin/waku +17 -0
- package/template/04_callserver/package.json +23 -0
- package/template/04_callserver/src/components/App.tsx +18 -0
- package/template/04_callserver/src/components/Counter.tsx +31 -0
- package/template/04_callserver/src/components/funcs.ts +3 -0
- package/template/04_callserver/src/entries.tsx +34 -0
- package/template/04_callserver/src/index.html +36 -0
- package/template/04_callserver/src/main.tsx +13 -0
- package/template/04_callserver/tsconfig.json +13 -0
- package/template/05_mutation/node_modules/.bin/tsc +17 -0
- package/template/05_mutation/node_modules/.bin/tsserver +17 -0
- package/template/05_mutation/node_modules/.bin/waku +17 -0
- package/template/05_mutation/package.json +23 -0
- package/template/05_mutation/src/components/App.tsx +21 -0
- package/template/05_mutation/src/components/Counter.tsx +24 -0
- package/template/05_mutation/src/components/funcs.ts +13 -0
- package/template/05_mutation/src/entries.tsx +34 -0
- package/template/05_mutation/src/index.html +36 -0
- package/template/05_mutation/src/main.tsx +13 -0
- package/template/05_mutation/tsconfig.json +13 -0
- package/template/06_nesting/node_modules/.bin/tsc +17 -0
- package/template/06_nesting/node_modules/.bin/tsserver +17 -0
- package/template/06_nesting/node_modules/.bin/waku +17 -0
- package/template/06_nesting/package.json +23 -0
- package/template/06_nesting/src/components/App.tsx +13 -0
- package/template/06_nesting/src/components/Counter.tsx +32 -0
- package/template/06_nesting/src/components/InnerApp.tsx +13 -0
- package/template/06_nesting/src/entries.tsx +49 -0
- package/template/06_nesting/src/index.html +36 -0
- package/template/06_nesting/src/main.tsx +13 -0
- package/template/06_nesting/tsconfig.json +13 -0
- package/template/07_router/node_modules/.bin/glob +17 -0
- package/template/07_router/node_modules/.bin/tsc +17 -0
- package/template/07_router/node_modules/.bin/tsserver +17 -0
- package/template/07_router/node_modules/.bin/waku +17 -0
- package/template/07_router/package.json +24 -0
- package/template/07_router/src/components/Counter.tsx +17 -0
- package/template/07_router/src/components/ErrorBoundary.tsx +28 -0
- package/template/07_router/src/entries.tsx +38 -0
- package/template/07_router/src/index.html +36 -0
- package/template/07_router/src/main.tsx +15 -0
- package/template/07_router/src/routes/bar/page.tsx +10 -0
- package/template/07_router/src/routes/foo/page.tsx +10 -0
- package/template/07_router/src/routes/layout.tsx +54 -0
- package/template/07_router/src/routes/nested/baz/page.tsx +7 -0
- package/template/07_router/src/routes/nested/layout.tsx +13 -0
- package/template/07_router/src/routes/nested/qux/page.tsx +7 -0
- package/template/07_router/src/routes/page.tsx +8 -0
- package/template/07_router/tsconfig.json +13 -0
- package/template/07_router/vite.config.ts +22 -0
- package/template/08_cookies/dev.js +29 -0
- package/template/08_cookies/node_modules/.bin/tsc +17 -0
- package/template/08_cookies/node_modules/.bin/tsserver +17 -0
- package/template/08_cookies/node_modules/.bin/waku +17 -0
- package/template/08_cookies/package.json +24 -0
- package/template/08_cookies/src/components/App.tsx +16 -0
- package/template/08_cookies/src/components/Counter.tsx +14 -0
- package/template/08_cookies/src/entries.tsx +38 -0
- package/template/08_cookies/src/index.html +36 -0
- package/template/08_cookies/src/main.tsx +13 -0
- package/template/08_cookies/start.js +36 -0
- package/template/08_cookies/tsconfig.json +13 -0
- package/template/09_cssmodules/node_modules/.bin/tsc +17 -0
- package/template/09_cssmodules/node_modules/.bin/tsserver +17 -0
- package/template/09_cssmodules/node_modules/.bin/waku +17 -0
- package/template/09_cssmodules/package.json +23 -0
- package/template/09_cssmodules/src/components/App.module.css +3 -0
- package/template/09_cssmodules/src/components/App.tsx +15 -0
- package/template/09_cssmodules/src/components/Counter.tsx +14 -0
- package/template/09_cssmodules/src/entries.tsx +34 -0
- package/template/09_cssmodules/src/index.html +36 -0
- package/template/09_cssmodules/src/main.tsx +13 -0
- package/template/09_cssmodules/tsconfig.json +13 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.