create-secra 1.0.1 → 1.0.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.
Files changed (43) hide show
  1. package/README.md +15 -5
  2. package/README.zh-CN.md +15 -4
  3. package/bin/index.mjs +9 -15
  4. package/package.json +2 -2
  5. package/template/{apps/core/index.html → index.html} +2 -3
  6. package/template/package.json +11 -47
  7. package/template/src/App.tsx +48 -0
  8. package/template/src/main.tsx +36 -0
  9. package/template/src/styles.css +163 -0
  10. package/template/src/vite-env.d.ts +1 -0
  11. package/template/tsconfig.app.json +0 -5
  12. package/template/tsconfig.node.json +0 -5
  13. package/template/vite.config.ts +6 -0
  14. package/template/apps/core/package.json +0 -18
  15. package/template/apps/core/public/favicon.ico +0 -1
  16. package/template/apps/core/public/favicon.svg +0 -1
  17. package/template/apps/core/public/logo.svg +0 -1
  18. package/template/apps/core/src/assets/react.svg +0 -1
  19. package/template/apps/core/src/main.tsx +0 -35
  20. package/template/apps/core/src/pages/index.tsx +0 -84
  21. package/template/apps/core/src/router.ts +0 -19
  22. package/template/apps/core/src/types/auto-imports.d.ts +0 -130
  23. package/template/apps/core/tsconfig.app.json +0 -7
  24. package/template/apps/core/tsconfig.json +0 -7
  25. package/template/apps/core/tsconfig.node.json +0 -7
  26. package/template/apps/core/vite.config.ts +0 -86
  27. package/template/eslint.config.js +0 -23
  28. package/template/packages/sdk/.swcrc +0 -18
  29. package/template/packages/sdk/package-lock.json +0 -1621
  30. package/template/packages/sdk/package.json +0 -35
  31. package/template/packages/sdk/src/build/index.ts +0 -33
  32. package/template/packages/sdk/src/build/plugins/auto-import.ts +0 -47
  33. package/template/packages/sdk/src/build/plugins/bundle-analyzer.ts +0 -35
  34. package/template/packages/sdk/src/build/plugins/remove-console.ts +0 -21
  35. package/template/packages/sdk/src/build/plugins/unocss.ts +0 -113
  36. package/template/packages/sdk/src/build/plugins/unplugin-icon.ts +0 -43
  37. package/template/packages/sdk/src/index.ts +0 -1
  38. package/template/packages/sdk/src/request/index.ts +0 -341
  39. package/template/packages/sdk/src/styles/reset.css +0 -111
  40. package/template/packages/sdk/tsconfig.json +0 -16
  41. package/template/pnpm-lock.yaml +0 -8034
  42. package/template/pnpm-workspace.yaml +0 -3
  43. package/template/turbo.json +0 -17
@@ -1,3 +0,0 @@
1
- packages:
2
- - "apps/*"
3
- - "packages/*"
@@ -1,17 +0,0 @@
1
- {
2
- "$schema": "https://turbo.build/schema.json",
3
- "tasks": {
4
- "build": {
5
- "dependsOn": ["^build"],
6
- "outputs": ["dist/**", "build/**"]
7
- },
8
- "dev": {
9
- "cache": false,
10
- "persistent": true
11
- },
12
- "lint": {},
13
- "test": {
14
- "dependsOn": ["^test"]
15
- }
16
- }
17
- }