Skip to content

Commit

Permalink
chore(release): 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rendez committed Nov 23, 2017
1 parent d447fb5 commit 56b1227
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="0.5.0"></a>
# [0.5.0](https://github.com/researchgate/react-intersection-observer/compare/v0.4.0...v0.5.0) (2017-11-23)


### Features

* **React-16:** add support for React 16 ([d447fb5](https://github.com/researchgate/react-intersection-observer/commit/d447fb5))



<a name="0.4.0"></a>
# [0.4.0](https://github.com/researchgate/react-intersection-observer/compare/v0.3.1...v0.4.0) (2017-10-11)

Expand Down
36 changes: 26 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@researchgate/react-intersection-observer",
"description": "React component for the Intersection Observer API",
"version": "0.4.0",
"version": "0.5.0",
"author": "Luis Merino <mail@luismerino.name>",
"bugs": {
"url": "https://github.com/researchgate/react-intersection-observer/issues"
Expand Down Expand Up @@ -44,12 +44,26 @@
"style-loader": "^0.19.0",
"validate-commit-msg": "^2.14.0"
},
"files": ["lib"],
"files": [
"lib"
],
"homepage": "https://github.com/researchgate/react-intersection-observer#readme",
"keywords": ["Intersection", "Observer", "react", "component", "viewport", "visible", "invisible", "researchgate"],
"keywords": [
"Intersection",
"Observer",
"react",
"component",
"viewport",
"visible",
"invisible",
"researchgate"
],
"license": "MIT",
"lint-staged": {
"{src,docs/docs}/**/*.js": ["eslint --fix", "git add"]
"{src,docs/docs}/**/*.js": [
"eslint --fix",
"git add"
]
},
"main": "lib/js/index.js",
"module": "lib/es/index.js",
Expand All @@ -63,15 +77,17 @@
},
"jest": {
"rootDir": "src",
"testMatch": ["**/__tests__/**/*.spec.js"],
"setupFiles": ["raf/polyfill"]
"testMatch": [
"**/__tests__/**/*.spec.js"
],
"setupFiles": [
"raf/polyfill"
]
},
"scripts": {
"build": "yarn build:js && yarn build:es",
"build:js":
"cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
"build:es":
"cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
"build:storybook": "build-storybook --output-dir docs",
"clear": "rimraf ./lib",
"commitmsg": "validate-commit-msg",
Expand Down

0 comments on commit 56b1227

Please sign in to comment.