create-bubbles 0.0.8 → 0.0.12

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/package.json +1 -1
  2. package/template-react-rsbuild/biome.json +102 -101
  3. package/template-react-rsbuild/commitlint.config.js +1 -1
  4. package/template-react-rsbuild/lefthook.yml +1 -1
  5. package/template-react-rsbuild/package.json +16 -16
  6. package/template-react-rsbuild/rsbuild.config.ts +11 -5
  7. package/template-react-rsbuild/src/App.tsx +9 -9
  8. package/template-react-rsbuild/src/components/Loading/PageLoading.tsx +11 -11
  9. package/template-react-rsbuild/src/env.d.ts +1 -1
  10. package/template-react-rsbuild/src/index.tsx +20 -20
  11. package/template-react-rsbuild/src/pages/home/index.tsx +26 -26
  12. package/template-react-rsbuild/src/router/index.tsx +27 -27
  13. package/template-react-rsbuild/src/store/index.ts +0 -0
  14. package/template-react-rsbuild/src/store/modules/user.ts +11 -0
  15. package/template-react-rsbuild/src/types/auto-import.d.ts +47 -47
  16. package/template-react-rsbuild/src/utils/request/axios.ts +82 -93
  17. package/template-react-rsbuild/src/utils/request/index.ts +43 -26
  18. package/template-react-rsbuild/tsconfig.json +29 -29
  19. package/template-react-rsbuild/uno.config.ts +8 -8
  20. package/template-vue-rsbuild/.prettierrc +1 -0
  21. package/template-vue-rsbuild/.vscode/settings.json +7 -0
  22. package/template-vue-rsbuild/biome.json +102 -112
  23. package/template-vue-rsbuild/lefthook.yml +11 -0
  24. package/template-vue-rsbuild/package.json +32 -30
  25. package/template-vue-rsbuild/pnpm-lock.yaml +3324 -0
  26. package/template-vue-rsbuild/rsbuild.config.ts +35 -28
  27. package/template-vue-rsbuild/src/App.vue +1 -27
  28. package/template-vue-rsbuild/src/index.ts +15 -7
  29. package/template-vue-rsbuild/src/router/guard/index.tsx +6 -0
  30. package/template-vue-rsbuild/src/router/guard/permissionGuard.ts +8 -0
  31. package/template-vue-rsbuild/src/router/index.tsx +14 -0
  32. package/template-vue-rsbuild/src/router/modules/index.tsx +10 -0
  33. package/template-vue-rsbuild/src/store/index.ts +7 -0
  34. package/template-vue-rsbuild/src/store/modules/user.ts +17 -0
  35. package/template-vue-rsbuild/src/types/auto-import.d.ts +91 -91
  36. package/template-vue-rsbuild/src/types/env.d.ts +17 -0
  37. package/template-vue-rsbuild/src/utils/request/axios.ts +83 -0
  38. package/template-vue-rsbuild/src/utils/request/index.ts +77 -0
  39. package/template-vue-rsbuild/src/views/home/index.vue +11 -0
  40. package/template-vue-rsbuild-eslint/.env +3 -0
  41. package/template-vue-rsbuild-eslint/.env.development +0 -0
  42. package/template-vue-rsbuild-eslint/.env.production +0 -0
  43. package/template-vue-rsbuild-eslint/.prettierignore +4 -0
  44. package/template-vue-rsbuild-eslint/.prettierrc +17 -0
  45. package/{template-vue-rsbuild → template-vue-rsbuild-eslint}/.vscode/extensions.json +3 -3
  46. package/template-vue-rsbuild-eslint/README.md +29 -0
  47. package/template-vue-rsbuild-eslint/biome.json +110 -0
  48. package/template-vue-rsbuild-eslint/index.html +7 -0
  49. package/template-vue-rsbuild-eslint/package.json +31 -0
  50. package/{template-react-rsbuild → template-vue-rsbuild-eslint}/postcss.config.mjs +2 -2
  51. package/template-vue-rsbuild-eslint/public/.gitkeep +0 -0
  52. package/template-vue-rsbuild-eslint/rsbuild.config.ts +28 -0
  53. package/template-vue-rsbuild-eslint/src/App.vue +29 -0
  54. package/template-vue-rsbuild-eslint/src/env.d.ts +17 -0
  55. package/template-vue-rsbuild-eslint/src/index.ts +15 -0
  56. package/template-vue-rsbuild-eslint/src/router/guard/index.tsx +6 -0
  57. package/template-vue-rsbuild-eslint/src/router/guard/permissionGuard.ts +8 -0
  58. package/template-vue-rsbuild-eslint/src/router/index.tsx +14 -0
  59. package/template-vue-rsbuild-eslint/src/router/modules/index.tsx +10 -0
  60. package/template-vue-rsbuild-eslint/src/store/index.ts +7 -0
  61. package/template-vue-rsbuild-eslint/src/store/modules/user.ts +16 -0
  62. package/template-vue-rsbuild-eslint/src/styles/index.css +16 -0
  63. package/template-vue-rsbuild-eslint/src/types/auto-import.d.ts +91 -0
  64. package/template-vue-rsbuild-eslint/src/utils/request/axios.ts +83 -0
  65. package/template-vue-rsbuild-eslint/src/utils/request/index.ts +77 -0
  66. package/template-vue-rsbuild-eslint/src/views/home/index.vue +13 -0
  67. package/template-vue-rsbuild-eslint/tsconfig.json +29 -0
  68. package/template-vue-rsbuild-eslint/uno.config.ts +9 -0
  69. package/template-react-rsbuild/pnpm-lock.yaml +0 -3615
  70. package/template-vue-rsbuild/postcss.config.mjs +0 -5
  71. package/template-vue-rsbuild/src/env.d.ts +0 -9
  72. /package/{template-vue-rsbuild → template-vue-rsbuild-eslint}/src/index.css +0 -0
@@ -1,5 +0,0 @@
1
- import UnoCSS from '@unocss/postcss';
2
-
3
- export default {
4
- plugins: [UnoCSS()],
5
- };
@@ -1,9 +0,0 @@
1
- /// <reference types="@rsbuild/core/types" />
2
-
3
- declare module '*.vue' {
4
- import type { DefineComponent } from 'vue';
5
-
6
- // biome-ignore lint/complexity/noBannedTypes: reason
7
- const component: DefineComponent<{}, {}, any>;
8
- export default component;
9
- }