@roki-h5/create-roki-app 0.1.0 → 0.1.1
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.
- package/dist/index.js +15 -1
- package/package.json +1 -1
- package/templates/h5/config/env/.env.development +7 -0
- package/templates/h5/config/env/.env.development.local +2 -0
- package/templates/h5/config/env/.env.production +9 -0
- package/templates/h5/config/env/.env.test +9 -0
- package/templates/h5/config/env.ts +10 -0
- package/templates/h5/index.html +1 -1
- package/templates/h5/node_modules/.bin/autoprefixer +17 -0
- package/templates/h5/node_modules/.bin/browserslist +17 -0
- package/templates/h5/node_modules/.bin/tsc +17 -0
- package/templates/h5/node_modules/.bin/tsserver +17 -0
- package/templates/h5/node_modules/.bin/vite +17 -0
- package/templates/h5/node_modules/.bin/vue-tsc +17 -0
- package/templates/h5/node_modules/.vite/deps/_metadata.json +43 -0
- package/templates/h5/node_modules/.vite/deps/axios.js +3370 -0
- package/templates/h5/node_modules/.vite/deps/axios.js.map +7 -0
- package/templates/h5/node_modules/.vite/deps/chunk-CVVHEZGK.js +162 -0
- package/templates/h5/node_modules/.vite/deps/chunk-CVVHEZGK.js.map +7 -0
- package/templates/h5/node_modules/.vite/deps/chunk-HFUUWO4F.js +13072 -0
- package/templates/h5/node_modules/.vite/deps/chunk-HFUUWO4F.js.map +7 -0
- package/templates/h5/node_modules/.vite/deps/chunk-PZ5AY32C.js +9 -0
- package/templates/h5/node_modules/.vite/deps/chunk-PZ5AY32C.js.map +7 -0
- package/templates/h5/node_modules/.vite/deps/package.json +3 -0
- package/templates/h5/node_modules/.vite/deps/pinia.js +1561 -0
- package/templates/h5/node_modules/.vite/deps/pinia.js.map +7 -0
- package/templates/h5/node_modules/.vite/deps/vue-router.js +2241 -0
- package/templates/h5/node_modules/.vite/deps/vue-router.js.map +7 -0
- package/templates/h5/node_modules/.vite/deps/vue.js +347 -0
- package/templates/h5/node_modules/.vite/deps/vue.js.map +7 -0
- package/templates/h5/node_modules/.vue-global-types/vue_3.5_0_0_0.d.ts +118 -0
- package/templates/h5/package.json +9 -6
- package/templates/h5/scripts/version.js +38 -0
- package/templates/h5/src/App.vue +29 -0
- package/templates/h5/src/api/index.ts +4 -0
- package/templates/h5/src/api/nativeApi.ts +72 -0
- package/templates/h5/src/api/request.ts +2 -1
- package/templates/h5/src/api/welcome.ts +24 -0
- package/templates/h5/src/assets/images/home/img-device.png +0 -0
- package/templates/h5/src/assets/images/home/logo-free.png +0 -0
- package/templates/h5/src/assets/images/logo.png +0 -0
- package/templates/h5/src/components/WelcomeInfo.vue +90 -0
- package/templates/h5/src/router/index.ts +1 -1
- package/templates/h5/src/stores/index.ts +96 -1
- package/templates/h5/src/utils/appInfo.ts +86 -0
- package/templates/h5/src/utils/browser.ts +26 -0
- package/templates/h5/src/utils/buildInfo.ts +3 -0
- package/templates/h5/src/utils/greeting.ts +38 -0
- package/templates/h5/src/views/home/index.vue +12 -11
- package/templates/h5/src/vite-env.d.ts +26 -0
- package/templates/h5/tsconfig.json +3 -2
- package/templates/h5/vite.config.ts +56 -11
- package/templates/h5/.env.development +0 -1