@roki-h5/create-roki-app 0.1.0 → 0.1.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 (53) hide show
  1. package/dist/index.js +16 -1
  2. package/package.json +1 -1
  3. package/templates/h5/config/env/.env.development +7 -0
  4. package/templates/h5/config/env/.env.development.local +2 -0
  5. package/templates/h5/config/env/.env.production +9 -0
  6. package/templates/h5/config/env/.env.test +9 -0
  7. package/templates/h5/config/env.ts +10 -0
  8. package/templates/h5/index.html +1 -1
  9. package/templates/h5/node_modules/.bin/autoprefixer +17 -0
  10. package/templates/h5/node_modules/.bin/browserslist +17 -0
  11. package/templates/h5/node_modules/.bin/tsc +17 -0
  12. package/templates/h5/node_modules/.bin/tsserver +17 -0
  13. package/templates/h5/node_modules/.bin/vite +17 -0
  14. package/templates/h5/node_modules/.bin/vue-tsc +17 -0
  15. package/templates/h5/node_modules/.vite/deps/_metadata.json +43 -0
  16. package/templates/h5/node_modules/.vite/deps/axios.js +3370 -0
  17. package/templates/h5/node_modules/.vite/deps/axios.js.map +7 -0
  18. package/templates/h5/node_modules/.vite/deps/chunk-CVVHEZGK.js +162 -0
  19. package/templates/h5/node_modules/.vite/deps/chunk-CVVHEZGK.js.map +7 -0
  20. package/templates/h5/node_modules/.vite/deps/chunk-HFUUWO4F.js +13072 -0
  21. package/templates/h5/node_modules/.vite/deps/chunk-HFUUWO4F.js.map +7 -0
  22. package/templates/h5/node_modules/.vite/deps/chunk-PZ5AY32C.js +9 -0
  23. package/templates/h5/node_modules/.vite/deps/chunk-PZ5AY32C.js.map +7 -0
  24. package/templates/h5/node_modules/.vite/deps/package.json +3 -0
  25. package/templates/h5/node_modules/.vite/deps/pinia.js +1561 -0
  26. package/templates/h5/node_modules/.vite/deps/pinia.js.map +7 -0
  27. package/templates/h5/node_modules/.vite/deps/vue-router.js +2241 -0
  28. package/templates/h5/node_modules/.vite/deps/vue-router.js.map +7 -0
  29. package/templates/h5/node_modules/.vite/deps/vue.js +347 -0
  30. package/templates/h5/node_modules/.vite/deps/vue.js.map +7 -0
  31. package/templates/h5/node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts +118 -0
  32. package/templates/h5/package.json +9 -6
  33. package/templates/h5/scripts/version.js +38 -0
  34. package/templates/h5/src/App.vue +29 -0
  35. package/templates/h5/src/api/index.ts +4 -0
  36. package/templates/h5/src/api/nativeApi.ts +72 -0
  37. package/templates/h5/src/api/request.ts +2 -1
  38. package/templates/h5/src/api/welcome.ts +24 -0
  39. package/templates/h5/src/assets/images/home/img-device.png +0 -0
  40. package/templates/h5/src/assets/images/home/logo-free.png +0 -0
  41. package/templates/h5/src/assets/images/logo.png +0 -0
  42. package/templates/h5/src/components/WelcomeInfo.vue +90 -0
  43. package/templates/h5/src/router/index.ts +1 -1
  44. package/templates/h5/src/stores/index.ts +96 -1
  45. package/templates/h5/src/utils/appInfo.ts +86 -0
  46. package/templates/h5/src/utils/browser.ts +26 -0
  47. package/templates/h5/src/utils/buildInfo.ts +3 -0
  48. package/templates/h5/src/utils/greeting.ts +38 -0
  49. package/templates/h5/src/views/home/index.vue +12 -11
  50. package/templates/h5/src/vite-env.d.ts +26 -0
  51. package/templates/h5/tsconfig.json +3 -2
  52. package/templates/h5/vite.config.ts +56 -11
  53. package/templates/h5/.env.development +0 -1
@@ -0,0 +1,9 @@
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
+ };
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }