Skip to content

Commit

Permalink
chore(release): 0.1.2 [skip ci]
Browse files Browse the repository at this point in the history
<a name="0.1.2"></a>
## [0.1.2](v0.1.1...v0.1.2) (2018-04-05)

### Bug Fixes

* build files before publish ([e116203](e116203))
  • Loading branch information
semantic-release-bot committed Apr 5, 2018
1 parent 74affbb commit 5407eee
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<a name="0.1.2"></a>
## [0.1.2](https://github.com/4Catalyzer/graphql-server/compare/v0.1.1...v0.1.2) (2018-04-05)


### Bug Fixes

* build files before publish ([e116203](https://github.com/4Catalyzer/graphql-server/commit/e116203))
29 changes: 18 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@4c/graphql-node-resource",
"version": "0.1.1",
"version": "0.1.2",
"main": "lib/index.js",
"modules": "es/index.js",
"jsnext:main": "es/index.js",
Expand All @@ -11,38 +11,45 @@
"node": ">= 8.3.0"
},
"scripts": {
"build":
"babel src -d lib --ignore __tests__ && BABEL_ENV=esm babel src --out-dir es --ignore __tests__",
"build": "babel src -d lib --ignore __tests__ && BABEL_ENV=esm babel src --out-dir es --ignore __tests__",
"check": "flow check",
"tdd": "jest --watch",
"test": "npm run lint && jest --coverage",
"lint":
"npm run check && eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
"format":
"eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
"lint": "npm run check && eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
"format": "eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"files": ["lib", "es"],
"files": [
"lib",
"es"
],
"jest": {
"collectCoverageFrom": ["src/**"]
"collectCoverageFrom": [
"src/**"
]
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write --ignore-path .eslintignore",
"git add"
]
},
"release": {
"extends": ["@4c/semantic-release-config"]
"extends": [
"@4c/semantic-release-config"
]
},
"devDependencies": {
"@4c/babel-preset-4catalyzer": "^1.2.1",
Expand Down

0 comments on commit 5407eee

Please sign in to comment.