Skip to content

Commit 396c8c6

Browse files
authored
Merge pull request #46 from ice-lab/fix/auto-fix
fix: Lint should not be fixed automatically before publishing
2 parents b499066 + 004a25c commit 396c8c6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ice/store",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "Lightweight React state management library based on react hooks",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -28,7 +28,7 @@
2828
"scripts": {
2929
"build": "rm -rf lib && tsc",
3030
"watch": "tsc -w",
31-
"prepublishOnly": "npm run lint && npm run test && npm run build",
31+
"prepublishOnly": "npm run lint:nofix && npm run test && npm run build",
3232
"lint": "npm run lint:nofix -- --fix",
3333
"lint:nofix": "eslint --cache --ext .ts,.tsx ./",
3434
"test": "NODE_ENV=unittest jest",
@@ -53,8 +53,7 @@
5353
"dependencies": {
5454
"is-promise": "^2.1.0",
5555
"lodash.foreach": "^4.5.0",
56-
"lodash.isfunction": "^3.0.9",
57-
"lodash.isobject": "^3.0.2"
56+
"lodash.isfunction": "^3.0.9"
5857
},
5958
"peerDependencies": {
6059
"react": "^16.8.0"

0 commit comments

Comments
 (0)