Added check for changes that haven't been committed

This commit is contained in:
2025-08-09 23:14:02 -04:00
parent 4120a6bac5
commit e4b91578e2

View File

@@ -7,7 +7,8 @@
"dev": "vite", "dev": "vite",
"build": "eslint . && tsc -b && vite build", "build": "eslint . && tsc -b && vite build",
"lint": "eslint .", "lint": "eslint .",
"deploy": "npm run build && npm pack && npm publish --access public", "check-git-clean": "git diff --quiet && git diff-cached --quiet",
"deploy": "npm run check-git-clean && npm run build && npm pack && npm publish --access public",
"preview": "vite preview", "preview": "vite preview",
"versionPatch": "npm version patch", "versionPatch": "npm version patch",
"versionMinor": "npm version minor", "versionMinor": "npm version minor",