create-rsbuild 1.0.0 → 1.0.1-beta.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 (72) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +1267 -67
  3. package/package.json +13 -6
  4. package/template-biome/biome.json +25 -0
  5. package/template-biome/package.json +12 -0
  6. package/template-eslint/common-js/eslint.config.mjs +8 -0
  7. package/template-eslint/common-js/package.json +13 -0
  8. package/template-eslint/common-ts/eslint.config.mjs +10 -0
  9. package/template-eslint/common-ts/package.json +14 -0
  10. package/template-eslint/react-js/eslint.config.mjs +29 -0
  11. package/template-eslint/react-js/package.json +16 -0
  12. package/template-eslint/react-ts/eslint.config.mjs +31 -0
  13. package/template-eslint/react-ts/package.json +17 -0
  14. package/template-eslint/svelte-js/eslint.config.mjs +20 -0
  15. package/template-eslint/svelte-js/package.json +14 -0
  16. package/template-eslint/svelte-ts/eslint.config.mjs +28 -0
  17. package/template-eslint/svelte-ts/package.json +16 -0
  18. package/template-eslint/vue-js/eslint.config.mjs +10 -0
  19. package/template-eslint/vue-js/package.json +14 -0
  20. package/template-eslint/vue-ts/eslint.config.mjs +12 -0
  21. package/template-eslint/vue-ts/package.json +15 -0
  22. package/template-lit-js/package.json +1 -1
  23. package/template-lit-ts/package.json +2 -2
  24. package/template-lit-ts/tsconfig.json +4 -1
  25. package/template-preact-js/package.json +17 -0
  26. package/template-preact-js/rsbuild.config.mjs +6 -0
  27. package/template-preact-js/src/App.css +26 -0
  28. package/template-preact-js/src/App.jsx +12 -0
  29. package/template-preact-js/src/index.jsx +4 -0
  30. package/template-preact-ts/package.json +18 -0
  31. package/template-preact-ts/rsbuild.config.ts +6 -0
  32. package/template-preact-ts/src/App.css +26 -0
  33. package/template-preact-ts/src/App.tsx +12 -0
  34. package/template-preact-ts/src/index.tsx +7 -0
  35. package/template-preact-ts/tsconfig.json +22 -0
  36. package/template-prettier/.prettierignore +4 -0
  37. package/template-prettier/.prettierrc +3 -0
  38. package/template-prettier/package.json +11 -0
  39. package/template-react-js/package.json +2 -2
  40. package/template-react-ts/package.json +5 -5
  41. package/template-react-ts/src/index.tsx +9 -6
  42. package/template-react-ts/tsconfig.json +4 -1
  43. package/template-solid-js/package.json +1 -1
  44. package/template-solid-js/rsbuild.config.mjs +6 -1
  45. package/template-solid-js/src/index.jsx +1 -1
  46. package/template-solid-ts/package.json +2 -2
  47. package/template-solid-ts/rsbuild.config.ts +6 -1
  48. package/template-solid-ts/src/index.tsx +4 -1
  49. package/template-solid-ts/tsconfig.json +4 -1
  50. package/template-svelte-js/package.json +1 -1
  51. package/template-svelte-js/src/index.js +1 -4
  52. package/template-svelte-ts/package.json +5 -3
  53. package/template-svelte-ts/src/index.ts +1 -4
  54. package/template-svelte-ts/tsconfig.json +7 -1
  55. package/template-vanilla-ts/package.json +1 -1
  56. package/template-vanilla-ts/tsconfig.json +4 -1
  57. package/template-vue2-js/src/index.js +1 -1
  58. package/template-vue2-ts/package.json +1 -1
  59. package/template-vue2-ts/src/index.ts +1 -1
  60. package/template-vue2-ts/tsconfig.json +5 -1
  61. package/template-vue3-js/.vscode/extensions.json +3 -0
  62. package/template-vue3-js/package.json +1 -1
  63. package/template-vue3-js/src/index.js +1 -1
  64. package/template-vue3-ts/.vscode/extensions.json +3 -0
  65. package/template-vue3-ts/package.json +2 -2
  66. package/template-vue3-ts/src/env.d.ts +1 -0
  67. package/template-vue3-ts/src/index.ts +1 -1
  68. package/template-vue3-ts/tsconfig.json +6 -1
  69. package/CHANGELOG.md +0 -86
  70. package/dist/index.d.ts +0 -2
  71. package/modern.config.ts +0 -3
  72. package/tsconfig.json +0 -8
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # Rsbuild
6
6
 
7
- Unleash the power of Rspack with the out-of-the-box build tool.
7
+ The Rspack-based build tool. It's fast, out-of-the-box and extensible.
8
8
 
9
9
  ## Documentation
10
10