create-waku 0.5.3 → 0.6.0

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 (179) hide show
  1. package/dist/.tsbuildinfo +1 -0
  2. package/dist/cli.d.ts +2 -0
  3. package/dist/cli.js +118 -7731
  4. package/package.json +5 -6
  5. package/src/cli.ts +3 -7
  6. package/template/01_counter/dist/components/App.js +6 -0
  7. package/template/01_counter/dist/components/Counter.js +7 -0
  8. package/template/01_counter/dist/entries.js +31 -0
  9. package/template/01_counter/dist/main.js +6 -0
  10. package/template/01_counter/node_modules/.bin/tsc +2 -2
  11. package/template/01_counter/node_modules/.bin/tsserver +2 -2
  12. package/template/01_counter/node_modules/.bin/waku +2 -2
  13. package/template/01_counter/package.json +6 -6
  14. package/template/01_counter/src/entries.tsx +2 -2
  15. package/template/01_counter/tsconfig.json +3 -1
  16. package/template/02_async/dist/.tsbuildinfo +1 -0
  17. package/template/02_async/dist/node/.tsbuildinfo +1 -0
  18. package/template/02_async/dist/node/vite.config.d.ts +2 -0
  19. package/template/02_async/dist/node/vite.config.js +14 -0
  20. package/template/02_async/dist/src/components/App.d.ts +4 -0
  21. package/template/02_async/dist/src/components/App.js +16 -0
  22. package/template/02_async/dist/src/components/Counter.d.ts +1 -0
  23. package/template/02_async/dist/src/components/Counter.js +7 -0
  24. package/template/02_async/dist/src/entries.d.ts +6 -0
  25. package/template/02_async/dist/src/entries.js +31 -0
  26. package/template/02_async/dist/src/main.d.ts +1 -0
  27. package/template/02_async/dist/src/main.js +15 -0
  28. package/template/02_async/node_modules/.bin/tsc +2 -2
  29. package/template/02_async/node_modules/.bin/tsserver +2 -2
  30. package/template/02_async/node_modules/.bin/waku +2 -2
  31. package/template/02_async/package.json +6 -6
  32. package/template/02_async/src/components/App.tsx +2 -0
  33. package/template/02_async/src/entries.tsx +2 -2
  34. package/template/02_async/tsconfig.json +11 -2
  35. package/template/02_async/tsconfig.node.json +9 -0
  36. package/template/03_promise/dist/components/App.js +9 -0
  37. package/template/03_promise/dist/components/Counter.js +8 -0
  38. package/template/03_promise/dist/entries.js +32 -0
  39. package/template/03_promise/dist/main.js +6 -0
  40. package/template/03_promise/node_modules/.bin/tsc +2 -2
  41. package/template/03_promise/node_modules/.bin/tsserver +2 -2
  42. package/template/03_promise/node_modules/.bin/waku +2 -2
  43. package/template/03_promise/package.json +6 -6
  44. package/template/03_promise/src/entries.tsx +2 -2
  45. package/template/03_promise/tsconfig.json +3 -1
  46. package/template/04_callserver/dist/components/App.js +7 -0
  47. package/template/04_callserver/dist/components/Counter.js +14 -0
  48. package/template/04_callserver/dist/components/funcs.js +2 -0
  49. package/template/04_callserver/dist/entries.js +31 -0
  50. package/template/04_callserver/dist/main.js +6 -0
  51. package/template/04_callserver/node_modules/.bin/tsc +2 -2
  52. package/template/04_callserver/node_modules/.bin/tsserver +2 -2
  53. package/template/04_callserver/node_modules/.bin/waku +2 -2
  54. package/template/04_callserver/package.json +6 -6
  55. package/template/04_callserver/src/entries.tsx +2 -2
  56. package/template/04_callserver/tsconfig.json +3 -1
  57. package/template/05_mutation/dist/components/App.js +7 -0
  58. package/template/05_mutation/dist/components/Counter.js +13 -0
  59. package/template/05_mutation/dist/components/funcs.js +9 -0
  60. package/template/05_mutation/dist/entries.js +31 -0
  61. package/template/05_mutation/dist/main.js +6 -0
  62. package/template/05_mutation/node_modules/.bin/tsc +2 -2
  63. package/template/05_mutation/node_modules/.bin/tsserver +2 -2
  64. package/template/05_mutation/node_modules/.bin/waku +2 -2
  65. package/template/05_mutation/package.json +6 -6
  66. package/template/05_mutation/src/entries.tsx +2 -2
  67. package/template/05_mutation/tsconfig.json +3 -1
  68. package/template/06_nesting/dist/components/App.js +6 -0
  69. package/template/06_nesting/dist/components/Counter.js +24 -0
  70. package/template/06_nesting/dist/components/InnerApp.js +6 -0
  71. package/template/06_nesting/dist/entries.js +45 -0
  72. package/template/06_nesting/dist/main.js +6 -0
  73. package/template/06_nesting/node_modules/.bin/tsc +2 -2
  74. package/template/06_nesting/node_modules/.bin/tsserver +2 -2
  75. package/template/06_nesting/node_modules/.bin/waku +2 -2
  76. package/template/06_nesting/package.json +6 -6
  77. package/template/06_nesting/src/entries.tsx +2 -2
  78. package/template/06_nesting/tsconfig.json +3 -1
  79. package/template/07_router/dist/.tsbuildinfo +1 -0
  80. package/template/07_router/dist/node/.tsbuildinfo +1 -0
  81. package/template/07_router/dist/node/vite.config.d.ts +2 -0
  82. package/template/07_router/dist/node/vite.config.js +16 -0
  83. package/template/07_router/dist/src/components/Counter.d.ts +1 -0
  84. package/template/07_router/dist/src/components/Counter.js +8 -0
  85. package/template/07_router/dist/src/components/ErrorBoundary.d.ts +7 -0
  86. package/template/07_router/dist/src/components/ErrorBoundary.js +17 -0
  87. package/template/07_router/dist/src/entries.d.ts +6 -0
  88. package/template/07_router/dist/src/entries.js +29 -0
  89. package/template/07_router/dist/src/main.d.ts +1 -0
  90. package/template/07_router/dist/src/main.js +7 -0
  91. package/template/07_router/dist/src/routes/bar/page.d.ts +2 -0
  92. package/template/07_router/dist/src/routes/bar/page.js +4 -0
  93. package/template/07_router/dist/src/routes/foo/page.d.ts +2 -0
  94. package/template/07_router/dist/src/routes/foo/page.js +4 -0
  95. package/template/07_router/dist/src/routes/layout.d.ts +5 -0
  96. package/template/07_router/dist/src/routes/layout.js +9 -0
  97. package/template/07_router/dist/src/routes/nested/baz/page.d.ts +2 -0
  98. package/template/07_router/dist/src/routes/nested/baz/page.js +3 -0
  99. package/template/07_router/dist/src/routes/nested/layout.d.ts +5 -0
  100. package/template/07_router/dist/src/routes/nested/layout.js +4 -0
  101. package/template/07_router/dist/src/routes/nested/qux/page.d.ts +2 -0
  102. package/template/07_router/dist/src/routes/nested/qux/page.js +3 -0
  103. package/template/07_router/dist/src/routes/page.d.ts +2 -0
  104. package/template/07_router/dist/src/routes/page.js +3 -0
  105. package/template/07_router/node_modules/.bin/glob +4 -4
  106. package/template/07_router/node_modules/.bin/tsc +2 -2
  107. package/template/07_router/node_modules/.bin/tsserver +2 -2
  108. package/template/07_router/node_modules/.bin/waku +2 -2
  109. package/template/07_router/package.json +7 -7
  110. package/template/07_router/src/entries.tsx +1 -1
  111. package/template/07_router/tsconfig.json +11 -2
  112. package/template/07_router/tsconfig.node.json +9 -0
  113. package/template/08_cookies/dev.js +1 -1
  114. package/template/08_cookies/dist/components/App.js +8 -0
  115. package/template/08_cookies/dist/components/Counter.js +7 -0
  116. package/template/08_cookies/dist/entries.js +22 -0
  117. package/template/08_cookies/dist/main.js +6 -0
  118. package/template/08_cookies/node_modules/.bin/tsc +2 -2
  119. package/template/08_cookies/node_modules/.bin/tsserver +2 -2
  120. package/template/08_cookies/node_modules/.bin/waku +2 -2
  121. package/template/08_cookies/package.json +6 -6
  122. package/template/08_cookies/src/entries.tsx +2 -2
  123. package/template/08_cookies/tsconfig.json +3 -1
  124. package/template/09_cssmodules/dist/components/App.js +8 -0
  125. package/template/09_cssmodules/dist/components/Counter.js +7 -0
  126. package/template/09_cssmodules/dist/entries.js +31 -0
  127. package/template/09_cssmodules/dist/main.js +6 -0
  128. package/template/09_cssmodules/node_modules/.bin/tsc +2 -2
  129. package/template/09_cssmodules/node_modules/.bin/tsserver +2 -2
  130. package/template/09_cssmodules/node_modules/.bin/waku +2 -2
  131. package/template/09_cssmodules/package.json +6 -6
  132. package/template/09_cssmodules/src/entries.tsx +2 -2
  133. package/template/09_cssmodules/tsconfig.json +3 -1
  134. package/template/10_dynamicroute/dist/.tsbuildinfo +1 -0
  135. package/template/10_dynamicroute/dist/node/.tsbuildinfo +1 -0
  136. package/template/10_dynamicroute/dist/node/vite.config.d.ts +2 -0
  137. package/template/10_dynamicroute/dist/node/vite.config.js +16 -0
  138. package/template/10_dynamicroute/dist/src/entries.d.ts +6 -0
  139. package/template/10_dynamicroute/dist/src/entries.js +61 -0
  140. package/template/10_dynamicroute/dist/src/main.d.ts +1 -0
  141. package/template/10_dynamicroute/dist/src/main.js +6 -0
  142. package/template/10_dynamicroute/dist/src/routes/[name]/page.d.ts +4 -0
  143. package/template/10_dynamicroute/dist/src/routes/[name]/page.js +3 -0
  144. package/template/10_dynamicroute/dist/src/routes/layout.d.ts +5 -0
  145. package/template/10_dynamicroute/dist/src/routes/layout.js +4 -0
  146. package/template/10_dynamicroute/dist/src/routes/page.d.ts +2 -0
  147. package/template/10_dynamicroute/dist/src/routes/page.js +3 -0
  148. package/template/10_dynamicroute/node_modules/.bin/glob +17 -0
  149. package/template/10_dynamicroute/node_modules/.bin/tsc +17 -0
  150. package/template/10_dynamicroute/node_modules/.bin/tsserver +17 -0
  151. package/template/10_dynamicroute/node_modules/.bin/waku +17 -0
  152. package/template/10_dynamicroute/package.json +24 -0
  153. package/template/10_dynamicroute/src/entries.tsx +75 -0
  154. package/template/10_dynamicroute/src/index.html +36 -0
  155. package/template/10_dynamicroute/src/main.tsx +11 -0
  156. package/template/10_dynamicroute/src/routes/[name]/page.tsx +7 -0
  157. package/template/10_dynamicroute/src/routes/layout.tsx +25 -0
  158. package/template/10_dynamicroute/src/routes/page.tsx +7 -0
  159. package/template/10_dynamicroute/tsconfig.json +22 -0
  160. package/template/10_dynamicroute/tsconfig.node.json +9 -0
  161. package/template/10_dynamicroute/vite.config.ts +22 -0
  162. package/template/11_form/dist/components/App.js +8 -0
  163. package/template/11_form/dist/components/Counter.js +13 -0
  164. package/template/11_form/dist/components/Form.js +10 -0
  165. package/template/11_form/dist/components/funcs.js +10 -0
  166. package/template/11_form/dist/entries.js +31 -0
  167. package/template/11_form/dist/main.js +6 -0
  168. package/template/11_form/node_modules/.bin/tsc +17 -0
  169. package/template/11_form/node_modules/.bin/tsserver +17 -0
  170. package/template/11_form/node_modules/.bin/waku +17 -0
  171. package/template/11_form/package.json +23 -0
  172. package/template/11_form/src/components/App.tsx +25 -0
  173. package/template/11_form/src/components/Counter.tsx +29 -0
  174. package/template/11_form/src/components/Form.tsx +35 -0
  175. package/template/11_form/src/components/funcs.ts +15 -0
  176. package/template/11_form/src/entries.tsx +34 -0
  177. package/template/11_form/src/index.html +36 -0
  178. package/template/11_form/src/main.tsx +13 -0
  179. package/template/11_form/tsconfig.json +15 -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.