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,30 +1,32 @@
1
- {
2
- "name": "template-vue",
3
- "version": "1.0.0",
4
- "private": true,
5
- "type": "module",
6
- "scripts": {
7
- "build": "rsbuild build",
8
- "check": "biome check --write",
9
- "dev": "rsbuild dev --open",
10
- "format": "prettier --write .",
11
- "preview": "rsbuild preview"
12
- },
13
- "dependencies": {
14
- "pinia": "^3.0.1",
15
- "vue": "^3.5.13",
16
- "vue-router": "^4.5.0"
17
- },
18
- "devDependencies": {
19
- "@biomejs/biome": "^1.9.4",
20
- "@ianvs/prettier-plugin-sort-imports": "^4.4.1",
21
- "@rsbuild/core": "^1.2.4",
22
- "@rsbuild/plugin-vue": "^1.0.5",
23
- "@unocss/postcss": "^65.5.0",
24
- "lefthook": "^1.10.1",
25
- "prettier": "^3.4.2",
26
- "typescript": "^5.7.3",
27
- "unocss": "^65.5.0",
28
- "unplugin-auto-import": "^19.1.0"
29
- }
30
- }
1
+ {
2
+ "name": "template-project",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "type": "module",
6
+ "scripts": {
7
+ "build": "rsbuild build",
8
+ "check": "biome check --write",
9
+ "dev": "rsbuild dev --open",
10
+ "format": "prettier --write .",
11
+ "preview": "rsbuild preview"
12
+ },
13
+ "dependencies": {
14
+ "ant-design-vue": "^4.2.6",
15
+ "pinia": "^3.0.1",
16
+ "vue": "^3.5.13",
17
+ "vue-router": "^4.5.0"
18
+ },
19
+ "devDependencies": {
20
+ "@biomejs/biome": "^1.9.4",
21
+ "@ianvs/prettier-plugin-sort-imports": "^4.4.1",
22
+ "@rsbuild/core": "^1.3.1",
23
+ "@rsbuild/plugin-sass": "^1.3.1",
24
+ "@rsbuild/plugin-vue": "^1.0.7",
25
+ "@unocss/postcss": "^65.5.0",
26
+ "lefthook": "^1.11.6",
27
+ "prettier": "^3.5.3",
28
+ "typescript": "^5.8.2",
29
+ "unocss": "^65.5.0",
30
+ "unplugin-auto-import": "^19.1.2"
31
+ }
32
+ }