create-packer 1.10.2 → 1.10.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/package.json
CHANGED
|
@@ -4,12 +4,13 @@
|
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
+
"prepare": "husky install",
|
|
7
8
|
"dev": "vite",
|
|
8
9
|
"build": "vue-tsc --noEmit && vite build",
|
|
9
10
|
"preview": "vite preview",
|
|
10
11
|
"format": "prettier --write \"src/**/*.{ts,js,tsx,jsx,vue,css,scss,less}\" \"./package.json\"",
|
|
11
|
-
"lint": "eslint ./src/**/*.{
|
|
12
|
-
"lint:fix": "eslint ./src/**/*.{
|
|
12
|
+
"lint": "eslint ./src/**/*.{ts,vue} && stylelint ./src/**/*.{css,scss,less}",
|
|
13
|
+
"lint:fix": "eslint ./src/**/*.{ts,vue} --fix && stylelint ./src/**/*.{css,scss,less} --fix",
|
|
13
14
|
"cz": "cz",
|
|
14
15
|
"push": "npm run commit && git push",
|
|
15
16
|
"commit": "git add . && npm run cz"
|