Skip to content

Commit 43530da

Browse files
chore(release): 2.0.0 [skip ci]
<a name="2.0.0"></a> # [2.0.0](v1.2.3...v2.0.0) (2018-11-30) ### Features * add types, change published directory ([#10](#10)) ([9886e69](9886e69)) ### BREAKING CHANGES * remove lib directory
1 parent 9886e69 commit 43530da

File tree

2 files changed

+30
-11
lines changed

2 files changed

+30
-11
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
<a name="2.0.0"></a>
2+
# [2.0.0](https://github.com/4Catalyzer/react-context-toolbox/compare/v1.2.3...v2.0.0) (2018-11-30)
3+
4+
5+
### Features
6+
7+
* add types, change published directory ([#10](https://github.com/4Catalyzer/react-context-toolbox/issues/10)) ([9886e69](https://github.com/4Catalyzer/react-context-toolbox/commit/9886e69))
8+
9+
10+
### BREAKING CHANGES
11+
12+
* remove lib directory
13+
114
<a name="1.2.3"></a>
215
## [1.2.3](https://github.com/4Catalyzer/react-context-toolbox/compare/v1.2.2...v1.2.3) (2018-10-30)
316

package.json

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-context-toolbox",
3-
"version": "1.2.3",
3+
"version": "2.0.0",
44
"main": "lib/index.js",
55
"module": "lib/es/index.js",
66
"types": "types/index.d.ts",
@@ -15,14 +15,11 @@
1515
"test": "npm run lint && jest",
1616
"testonly": "jest",
1717
"build:es": "babel src -d lib/es --env-name esm --ignore **/__tests__ ",
18-
"build:lib":
19-
"babel src -d lib --ignore **/__tests__ --delete-dir-on-start ",
18+
"build:lib": "babel src -d lib --ignore **/__tests__ --delete-dir-on-start ",
2019
"build": "npm run build:lib && npm run build:es",
2120
"prepublishOnly": "yarn run build",
22-
"lint":
23-
"eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
24-
"format":
25-
"eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
21+
"lint": "eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
22+
"format": "eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
2623
"precommit": "lint-staged"
2724
},
2825
"publishConfig": {
@@ -34,19 +31,28 @@
3431
"trailingComma": "all"
3532
},
3633
"lint-staged": {
37-
"*.js": ["eslint --fix", "git add"],
34+
"*.js": [
35+
"eslint --fix",
36+
"git add"
37+
],
3838
"*.{json,css,md}": [
3939
"prettier --write --ignore-path .eslintignore",
4040
"git add"
4141
]
4242
},
4343
"jest": {
44-
"roots": ["<rootDir>/test"],
44+
"roots": [
45+
"<rootDir>/test"
46+
],
4547
"testEnvironment": "jsdom",
46-
"setupFiles": ["<rootDir>/test/index.js"]
48+
"setupFiles": [
49+
"<rootDir>/test/index.js"
50+
]
4751
},
4852
"release": {
49-
"extends": ["@4c/semantic-release-config"],
53+
"extends": [
54+
"@4c/semantic-release-config"
55+
],
5056
"pkgRoot": "lib"
5157
},
5258
"devDependencies": {

0 commit comments

Comments
 (0)