Skip to content

Commit 2b591dd

Browse files
chore(release): 1.0.0 [skip ci]
<a name="1.0.0"></a> # 1.0.0 (2018-05-25) ### Features * initial release ([d984ac3](d984ac3))
1 parent d984ac3 commit 2b591dd

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<a name="1.0.0"></a>
2+
# 1.0.0 (2018-05-25)
3+
4+
5+
### Features
6+
7+
* initial release ([d984ac3](https://github.com/4Catalyzer/context/commit/d984ac3))

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": "0.0.0",
3+
"version": "1.0.0",
44
"main": "lib/index.js",
55
"modules": "es/index.js",
66
"jsnext:main": "es/index.js",
@@ -14,16 +14,12 @@
1414
"tdd": "jest --watch",
1515
"test": "npm run lint && jest",
1616
"testonly": "jest",
17-
"build:es":
18-
"babel src -d es --env-name esm --ignore **/__tests__ --delete-dir-on-start",
19-
"build:lib":
20-
"babel src -d lib --ignore **/__tests__ --delete-dir-on-start",
17+
"build:es": "babel src -d es --env-name esm --ignore **/__tests__ --delete-dir-on-start",
18+
"build:lib": "babel src -d lib --ignore **/__tests__ --delete-dir-on-start",
2119
"build": "npm run build:lib && npm run build:es",
2220
"prepublishOnly": "yarn run build",
23-
"lint":
24-
"eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
25-
"format":
26-
"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}'",
2723
"precommit": "lint-staged",
2824
"travis-deploy-once": "travis-deploy-once",
2925
"semantic-release": "semantic-release"
@@ -37,19 +33,28 @@
3733
"trailingComma": "all"
3834
},
3935
"lint-staged": {
40-
"*.js": ["eslint --fix", "git add"],
36+
"*.js": [
37+
"eslint --fix",
38+
"git add"
39+
],
4140
"*.{json,css,md}": [
4241
"prettier --write --ignore-path .eslintignore",
4342
"git add"
4443
]
4544
},
4645
"jest": {
47-
"roots": ["<rootDir>/test"],
46+
"roots": [
47+
"<rootDir>/test"
48+
],
4849
"testEnvironment": "jsdom",
49-
"setupFiles": ["<rootDir>/test/index.js"]
50+
"setupFiles": [
51+
"<rootDir>/test/index.js"
52+
]
5053
},
5154
"release": {
52-
"extends": ["@4c/semantic-release-config"]
55+
"extends": [
56+
"@4c/semantic-release-config"
57+
]
5358
},
5459
"devDependencies": {
5560
"@4c/babel-preset-4catalyzer": "^1.0.0",

0 commit comments

Comments
 (0)