@duonghieu0712z/create-tauri-vue-template 0.0.10 → 0.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duonghieu0712z/create-tauri-vue-template",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Create a Tauri 2 + Vue 3 desktop app from the tauri-vue-template starter.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,6 +41,9 @@ jobs:
41
41
  - name: Check lint
42
42
  run: pnpm lint
43
43
 
44
+ - name: Check types
45
+ run: pnpm type-check
46
+
44
47
  rust:
45
48
  runs-on: ubuntu-latest
46
49
 
@@ -3,7 +3,7 @@
3
3
  "explorer.fileNesting.patterns": {
4
4
  "tsconfig.json": "tsconfig.*.json, env.d.ts, typed-router.d.ts",
5
5
  "vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*",
6
- "package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .oxfmt*, .prettier*, prettier*, .editorconfig"
6
+ "package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .oxfmt*, .prettier*, prettier*, .lintstagedrc*, lint-staged*, .editorconfig"
7
7
  },
8
8
  "editor.codeActionsOnSave": {
9
9
  "source.fixAll": "explicit"
@@ -1,8 +1,5 @@
1
1
  export default {
2
2
  '*.{js,ts,tsx,vue,html,css,json,yml,yaml}': ['oxfmt'],
3
3
  '*.{js,ts,tsx,vue}': ['oxlint --fix', 'eslint --fix'],
4
- '*.rs': () => [
5
- 'cargo +nightly fmt --manifest-path src-tauri/Cargo.toml',
6
- 'cargo +nightly clippy --manifest-path src-tauri/Cargo.toml -- -D warnings',
7
- ],
4
+ '*.rs': () => ['cargo +nightly fmt --manifest-path src-tauri/Cargo.toml'],
8
5
  };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "extends": "@tsconfig/node24/tsconfig.json",
3
- "include": ["vite.config.*", "eslint.config.*"],
3
+ "include": ["vite.config.*", "eslint.config.*", "lint-staged.config.*"],
4
4
  "compilerOptions": {
5
5
  "module": "preserve",
6
6
  "moduleResolution": "bundler",