Skip to content

Commit 8daadf8

Browse files
committed
6.0.6
1 parent 036d3e7 commit 8daadf8

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
{
22
"name": "react-easy-state",
3-
"version": "6.0.5",
4-
"description":
5-
"React state management with a minimal API. Made with ES6 Proxies.",
3+
"version": "6.0.6",
4+
"description": "React state management with a minimal API. Made with ES6 Proxies.",
65
"main": "dist/cjs.es6.js",
76
"module": "dist/es.es6.js",
87
"types": "types/index.d.ts",
9-
"files": ["dist", "types"],
8+
"files": [
9+
"dist",
10+
"types"
11+
],
1012
"scripts": {
1113
"test": "jest --coverage",
1214
"test-watch": "jest --watch",
1315
"test-update": "jest --updateSnapshot",
1416
"test-builds": "node ./scripts/testBuilds.js",
1517
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
1618
"lint": "standard",
17-
"lint-fix":
18-
"prettier --ignore-path '.gitignore' --write '**/*.{js,jsx}' '!**/build/**' && standard --fix",
19+
"lint-fix": "prettier --ignore-path '.gitignore' --write '**/*.{js,jsx}' '!**/build/**' && standard --fix",
1920
"build-examples": "node ./scripts/buildExamples.js",
2021
"link-examples": "node ./scripts/linkExamples.js",
2122
"unlink-examples": "node ./scripts/unlinkExamples.js",
2223
"build": "node ./scripts/build.js",
2324
"build-toc": "node ./scripts/buildToc.js"
2425
},
2526
"jest": {
26-
"snapshotSerializers": ["enzyme-to-json/serializer"],
27+
"snapshotSerializers": [
28+
"enzyme-to-json/serializer"
29+
],
2730
"collectCoverageFrom": [
2831
"**/src/**",
2932
"**/examples/**/*.{js,jsx}",
@@ -104,8 +107,17 @@
104107
},
105108
"standard": {
106109
"parser": "babel-eslint",
107-
"env": ["browser", "jest"],
108-
"ignore": ["**/build/**", "**/node_modules/**"]
110+
"env": [
111+
"browser",
112+
"jest"
113+
],
114+
"ignore": [
115+
"**/build/**",
116+
"**/node_modules/**"
117+
]
109118
},
110-
"pre-push": ["lint", "test"]
119+
"pre-push": [
120+
"lint",
121+
"test"
122+
]
111123
}

0 commit comments

Comments
 (0)