@duonghieu0712z/create-tauri-vue-template 0.0.3
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/LICENSE +21 -0
- package/README.md +74 -0
- package/assets/vscode-settings.json +16 -0
- package/dist/bin/index.js +83 -0
- package/dist/cli/color.js +25 -0
- package/dist/cli/files.js +18 -0
- package/dist/cli/project.js +48 -0
- package/dist/cli/prompts.js +44 -0
- package/dist/cli/release-workflow.js +13 -0
- package/dist/cli/scaffold.js +30 -0
- package/dist/cli/text.js +24 -0
- package/dist/cli/types.js +1 -0
- package/dist/scripts/prepare-template.js +67 -0
- package/package.json +39 -0
- package/template/.editorconfig +8 -0
- package/template/.gitattributes +5 -0
- package/template/.github/dependabot.yml +38 -0
- package/template/.github/workflows/code-quality.yml +70 -0
- package/template/.github/workflows/release.yml +112 -0
- package/template/.husky/pre-commit +7 -0
- package/template/.oxfmtrc.json +36 -0
- package/template/.oxlintrc.json +24 -0
- package/template/.vscode/extensions.json +11 -0
- package/template/CHANGELOG.md +12 -0
- package/template/LICENSE +21 -0
- package/template/README.md +126 -0
- package/template/components.json +24 -0
- package/template/eslint.config.ts +32 -0
- package/template/index.html +14 -0
- package/template/package.json +74 -0
- package/template/pnpm-lock.yaml +3953 -0
- package/template/pnpm-workspace.yaml +3 -0
- package/template/public/favicon.ico +0 -0
- package/template/rust-toolchain.toml +2 -0
- package/template/scripts/bump-version.js +42 -0
- package/template/scripts/rename-app.js +137 -0
- package/template/scripts/utils.js +59 -0
- package/template/src/App.vue +71 -0
- package/template/src/assets/fonts/Geist/Geist-Italic[wght].woff2 +0 -0
- package/template/src/assets/fonts/Geist/Geist[wght].woff2 +0 -0
- package/template/src/assets/images/tauri.svg +6 -0
- package/template/src/assets/images/vite.svg +1 -0
- package/template/src/assets/images/vue.svg +1 -0
- package/template/src/generated/auto-import.d.ts +139 -0
- package/template/src/generated/bindings.ts +9 -0
- package/template/src/lib/utils.ts +8 -0
- package/template/src/main.ts +9 -0
- package/template/src/styles/fonts.css +15 -0
- package/template/src/styles/globals.css +130 -0
- package/template/src/vite-env.d.ts +7 -0
- package/template/src-tauri/Cargo.lock +6328 -0
- package/template/src-tauri/Cargo.toml +41 -0
- package/template/src-tauri/build.rs +3 -0
- package/template/src-tauri/capabilities/default.json +7 -0
- package/template/src-tauri/icons/128x128.png +0 -0
- package/template/src-tauri/icons/128x128@2x.png +0 -0
- package/template/src-tauri/icons/32x32.png +0 -0
- package/template/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template/src-tauri/icons/StoreLogo.png +0 -0
- package/template/src-tauri/icons/icon.icns +0 -0
- package/template/src-tauri/icons/icon.ico +0 -0
- package/template/src-tauri/icons/icon.png +0 -0
- package/template/src-tauri/src/command/mod.rs +13 -0
- package/template/src-tauri/src/lib.rs +54 -0
- package/template/src-tauri/src/main.rs +6 -0
- package/template/src-tauri/tauri.conf.json +37 -0
- package/template/tsconfig.app.json +11 -0
- package/template/tsconfig.json +11 -0
- package/template/tsconfig.node.json +11 -0
- package/template/vite.config.ts +42 -0