@roki-h5/create-roki-app 0.1.2 → 0.1.4

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 (63) hide show
  1. package/package.json +12 -2
  2. package/templates/h5/.agents/skills/brainstorming/SKILL.md +159 -0
  3. package/templates/h5/.agents/skills/brainstorming/scripts/frame-template.html +213 -0
  4. package/templates/h5/.agents/skills/brainstorming/scripts/helper.js +167 -0
  5. package/templates/h5/.agents/skills/brainstorming/scripts/server.cjs +723 -0
  6. package/templates/h5/.agents/skills/brainstorming/scripts/start-server.sh +209 -0
  7. package/templates/h5/.agents/skills/brainstorming/scripts/stop-server.sh +120 -0
  8. package/templates/h5/.agents/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  9. package/templates/h5/.agents/skills/brainstorming/visual-companion.md +298 -0
  10. package/templates/h5/.agents/skills/systematic-debugging/CREATION-LOG.md +119 -0
  11. package/templates/h5/.agents/skills/systematic-debugging/SKILL.md +296 -0
  12. package/templates/h5/.agents/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  13. package/templates/h5/.agents/skills/systematic-debugging/condition-based-waiting.md +115 -0
  14. package/templates/h5/.agents/skills/systematic-debugging/defense-in-depth.md +122 -0
  15. package/templates/h5/.agents/skills/systematic-debugging/find-polluter.sh +63 -0
  16. package/templates/h5/.agents/skills/systematic-debugging/root-cause-tracing.md +169 -0
  17. package/templates/h5/.agents/skills/systematic-debugging/test-academic.md +14 -0
  18. package/templates/h5/.agents/skills/systematic-debugging/test-pressure-1.md +58 -0
  19. package/templates/h5/.agents/skills/systematic-debugging/test-pressure-2.md +68 -0
  20. package/templates/h5/.agents/skills/systematic-debugging/test-pressure-3.md +69 -0
  21. package/templates/h5/.agents/skills/test-driven-development/SKILL.md +371 -0
  22. package/templates/h5/.agents/skills/test-driven-development/testing-anti-patterns.md +299 -0
  23. package/templates/h5/.agents/skills/writing-plans/SKILL.md +174 -0
  24. package/templates/h5/.agents/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  25. package/templates/h5/docs/agent-skills.md +136 -0
  26. package/templates/h5/scripts/version.js +1 -1
  27. package/templates/h5/skills-lock.json +29 -0
  28. package/templates/h5/src/assets/images/home/logo-poweroff.png +0 -0
  29. package/templates/h5/src/assets/images/home/logo-working.png +0 -0
  30. package/templates/h5/src/assets/styles/atomic/flex.css +60 -0
  31. package/templates/h5/src/assets/styles/atomic/index.css +4 -0
  32. package/templates/h5/src/assets/styles/atomic/layout.css +64 -0
  33. package/templates/h5/src/assets/styles/atomic/spacing.css +97 -0
  34. package/templates/h5/src/assets/styles/atomic/text.css +133 -0
  35. package/templates/h5/src/assets/styles/main.css +26 -1
  36. package/templates/h5/src/assets/styles/variables.css +19 -0
  37. package/templates/h5/src/components/WelcomeInfo.vue +2 -5
  38. package/templates/h5/src/main.ts +2 -2
  39. package/templates/h5/src/stores/app.ts +110 -0
  40. package/templates/h5/src/stores/index.ts +5 -108
  41. package/templates/h5/node_modules/.bin/autoprefixer +0 -17
  42. package/templates/h5/node_modules/.bin/browserslist +0 -17
  43. package/templates/h5/node_modules/.bin/tsc +0 -17
  44. package/templates/h5/node_modules/.bin/tsserver +0 -17
  45. package/templates/h5/node_modules/.bin/vite +0 -17
  46. package/templates/h5/node_modules/.bin/vue-tsc +0 -17
  47. package/templates/h5/node_modules/.vite/deps/_metadata.json +0 -43
  48. package/templates/h5/node_modules/.vite/deps/axios.js +0 -3370
  49. package/templates/h5/node_modules/.vite/deps/axios.js.map +0 -7
  50. package/templates/h5/node_modules/.vite/deps/chunk-CVVHEZGK.js +0 -162
  51. package/templates/h5/node_modules/.vite/deps/chunk-CVVHEZGK.js.map +0 -7
  52. package/templates/h5/node_modules/.vite/deps/chunk-HFUUWO4F.js +0 -13072
  53. package/templates/h5/node_modules/.vite/deps/chunk-HFUUWO4F.js.map +0 -7
  54. package/templates/h5/node_modules/.vite/deps/chunk-PZ5AY32C.js +0 -9
  55. package/templates/h5/node_modules/.vite/deps/chunk-PZ5AY32C.js.map +0 -7
  56. package/templates/h5/node_modules/.vite/deps/package.json +0 -3
  57. package/templates/h5/node_modules/.vite/deps/pinia.js +0 -1561
  58. package/templates/h5/node_modules/.vite/deps/pinia.js.map +0 -7
  59. package/templates/h5/node_modules/.vite/deps/vue-router.js +0 -2241
  60. package/templates/h5/node_modules/.vite/deps/vue-router.js.map +0 -7
  61. package/templates/h5/node_modules/.vite/deps/vue.js +0 -347
  62. package/templates/h5/node_modules/.vite/deps/vue.js.map +0 -7
  63. package/templates/h5/node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts +0 -118
@@ -1,9 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __export = (target, all) => {
3
- for (var name in all)
4
- __defProp(target, name, { get: all[name], enumerable: true });
5
- };
6
-
7
- export {
8
- __export
9
- };
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": [],
4
- "sourcesContent": [],
5
- "mappings": "",
6
- "names": []
7
- }
@@ -1,3 +0,0 @@
1
- {
2
- "type": "module"
3
- }