Skip to content

Commit

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

### Bug Fixes

* correct class name on PaginatedHttpResource ([6b5984a](6b5984a))

### Features

* add main export ([ae37549](ae37549))
* better HttpError messages ([c85a6c3](c85a6c3))
  • Loading branch information
semantic-release-bot committed Apr 20, 2018
1 parent acfc8da commit 623563f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 13 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="0.4.0"></a>
# [0.4.0](https://github.com/4Catalyzer/graphql-server/compare/v0.3.0...v0.4.0) (2018-04-20)


### Bug Fixes

* correct class name on PaginatedHttpResource ([6b5984a](https://github.com/4Catalyzer/graphql-server/commit/6b5984a))


### Features

* add main export ([ae37549](https://github.com/4Catalyzer/graphql-server/commit/ae37549))
* better HttpError messages ([c85a6c3](https://github.com/4Catalyzer/graphql-server/commit/c85a6c3))

<a name="0.3.0"></a>
# [0.3.0](https://github.com/4Catalyzer/graphql-server/compare/v0.2.0...v0.3.0) (2018-04-19)

Expand Down
32 changes: 19 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@4c/graphql-node-resource",
"version": "0.3.0",
"version": "0.4.0",
"main": "lib/index.js",
"modules": "es/index.js",
"jsnext:main": "es/index.js",
Expand All @@ -11,41 +11,47 @@
"node": ">= 8.3.0"
},
"scripts": {
"build":
"babel src -d lib --ignore __tests__ && BABEL_ENV=esm babel src --out-dir es --ignore __tests__ && npm run build:flow",
"build:flow":
"for file in $(find ./src -name '*.js' -not -path '*/__tests__*'); do cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/lib\\//g'`.flow; cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/es\\//g'`.flow; done",
"build": "babel src -d lib --ignore __tests__ && BABEL_ENV=esm babel src --out-dir es --ignore __tests__ && npm run build:flow",
"build:flow": "for file in $(find ./src -name '*.js' -not -path '*/__tests__*'); do cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/lib\\//g'`.flow; cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/es\\//g'`.flow; done",
"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}'",
"format":
"eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'",
"lint": "npm run check && eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css}'",
"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": {
"testEnvironment": "node",
"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/semantic-release-config": "^1.0.1",
Expand Down

0 comments on commit 623563f

Please sign in to comment.