@jiaozhiye/qm-design-react 1.6.2 → 1.6.4
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/lib/form/src/form.d.ts +1 -0
- package/lib/form/src/types.d.ts +3 -0
- package/lib/index.esm.js +2 -2
- package/lib/index.full.js +1 -1
- package/lib/index.js +2 -2
- package/package.json +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jiaozhiye/qm-design-react",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.4",
|
|
4
4
|
"description": "A Component Library for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"React",
|
|
@@ -20,9 +20,7 @@
|
|
|
20
20
|
"clean:lib": "rimraf lib",
|
|
21
21
|
"lint": "eslint ./packages --ext .js,.ts,.jsx,.tsx",
|
|
22
22
|
"lint-fix": "eslint --fix ./packages --ext .js,.ts,.jsx,.tsx",
|
|
23
|
-
"format": "prettier --write \"./packages/**/*.{js,ts,jsx,tsx}\""
|
|
24
|
-
"website-dev": "cross-env NODE_ENV=development BABEL_ENV=web webpack serve --progress --config ./website/webpack.config.js",
|
|
25
|
-
"website-build": "rimraf website-dist && cross-env NODE_ENV=production BABEL_ENV=web webpack --config ./website/webpack.config.js"
|
|
23
|
+
"format": "prettier --write \"./packages/**/*.{js,ts,jsx,tsx}\""
|
|
26
24
|
},
|
|
27
25
|
"husky": {
|
|
28
26
|
"hooks": {
|
|
@@ -30,7 +28,7 @@
|
|
|
30
28
|
}
|
|
31
29
|
},
|
|
32
30
|
"lint-staged": {
|
|
33
|
-
"packages/**/*.{js,ts,jsx,tsx
|
|
31
|
+
"packages/**/*.{js,ts,jsx,tsx}": [
|
|
34
32
|
"npm run lint-fix",
|
|
35
33
|
"git add"
|
|
36
34
|
],
|