Skip to content

Commit 04382eb

Browse files
chore(release): 2.0.1 [skip ci]
<a name="2.0.1"></a> ## [2.0.1](v2.0.0...v2.0.1) (2018-11-30) ### Bug Fixes * include types in dist ([91f87aa](91f87aa))
1 parent 91f87aa commit 04382eb

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="2.0.1"></a>
2+
## [2.0.1](https://github.com/4Catalyzer/react-context-toolbox/compare/v2.0.0...v2.0.1) (2018-11-30)
3+
4+
5+
### Bug Fixes
6+
7+
* include types in dist ([91f87aa](https://github.com/4Catalyzer/react-context-toolbox/commit/91f87aa))
8+
19
<a name="2.0.0"></a>
210
# [2.0.0](https://github.com/4Catalyzer/react-context-toolbox/compare/v1.2.3...v2.0.0) (2018-11-30)
311

package.json

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-context-toolbox",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"main": "lib/index.js",
55
"module": "lib/es/index.js",
66
"types": "types/index.d.ts",
@@ -16,15 +16,11 @@
1616
"testonly": "jest",
1717
"test:types": "dtslint types",
1818
"build:es": "babel src -d lib/es --env-name esm --ignore **/__tests__ ",
19-
"build:lib":
20-
"babel src -d lib --ignore **/__tests__ --delete-dir-on-start ",
21-
"build":
22-
"npm run build:lib && npm run build:es && cpy types/index.d.ts lib/types",
19+
"build:lib": "babel src -d lib --ignore **/__tests__ --delete-dir-on-start ",
20+
"build": "npm run build:lib && npm run build:es && cpy types/index.d.ts lib/types",
2321
"prepublishOnly": "yarn run build",
24-
"lint":
25-
"eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
26-
"format":
27-
"eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
22+
"lint": "eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
23+
"format": "eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
2824
"precommit": "lint-staged"
2925
},
3026
"publishConfig": {
@@ -36,19 +32,28 @@
3632
"trailingComma": "all"
3733
},
3834
"lint-staged": {
39-
"*.js": ["eslint --fix", "git add"],
35+
"*.js": [
36+
"eslint --fix",
37+
"git add"
38+
],
4039
"*.{json,css,md}": [
4140
"prettier --write --ignore-path .eslintignore",
4241
"git add"
4342
]
4443
},
4544
"jest": {
46-
"roots": ["<rootDir>/test"],
45+
"roots": [
46+
"<rootDir>/test"
47+
],
4748
"testEnvironment": "jsdom",
48-
"setupFiles": ["<rootDir>/test/index.js"]
49+
"setupFiles": [
50+
"<rootDir>/test/index.js"
51+
]
4952
},
5053
"release": {
51-
"extends": ["@4c/semantic-release-config"],
54+
"extends": [
55+
"@4c/semantic-release-config"
56+
],
5257
"pkgRoot": "lib"
5358
},
5459
"devDependencies": {

0 commit comments

Comments
 (0)