Skip to content

Commit 56b1227

Browse files
committed
chore(release): 0.5.0
1 parent d447fb5 commit 56b1227

File tree

2 files changed

+36
-10
lines changed

2 files changed

+36
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
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.
44

5+
<a name="0.5.0"></a>
6+
# [0.5.0](https://github.com/researchgate/react-intersection-observer/compare/v0.4.0...v0.5.0) (2017-11-23)
7+
8+
9+
### Features
10+
11+
* **React-16:** add support for React 16 ([d447fb5](https://github.com/researchgate/react-intersection-observer/commit/d447fb5))
12+
13+
14+
515
<a name="0.4.0"></a>
616
# [0.4.0](https://github.com/researchgate/react-intersection-observer/compare/v0.3.1...v0.4.0) (2017-10-11)
717

package.json

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@researchgate/react-intersection-observer",
33
"description": "React component for the Intersection Observer API",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"author": "Luis Merino <[email protected]>",
66
"bugs": {
77
"url": "https://github.com/researchgate/react-intersection-observer/issues"
@@ -44,12 +44,26 @@
4444
"style-loader": "^0.19.0",
4545
"validate-commit-msg": "^2.14.0"
4646
},
47-
"files": ["lib"],
47+
"files": [
48+
"lib"
49+
],
4850
"homepage": "https://github.com/researchgate/react-intersection-observer#readme",
49-
"keywords": ["Intersection", "Observer", "react", "component", "viewport", "visible", "invisible", "researchgate"],
51+
"keywords": [
52+
"Intersection",
53+
"Observer",
54+
"react",
55+
"component",
56+
"viewport",
57+
"visible",
58+
"invisible",
59+
"researchgate"
60+
],
5061
"license": "MIT",
5162
"lint-staged": {
52-
"{src,docs/docs}/**/*.js": ["eslint --fix", "git add"]
63+
"{src,docs/docs}/**/*.js": [
64+
"eslint --fix",
65+
"git add"
66+
]
5367
},
5468
"main": "lib/js/index.js",
5569
"module": "lib/es/index.js",
@@ -63,15 +77,17 @@
6377
},
6478
"jest": {
6579
"rootDir": "src",
66-
"testMatch": ["**/__tests__/**/*.spec.js"],
67-
"setupFiles": ["raf/polyfill"]
80+
"testMatch": [
81+
"**/__tests__/**/*.spec.js"
82+
],
83+
"setupFiles": [
84+
"raf/polyfill"
85+
]
6886
},
6987
"scripts": {
7088
"build": "yarn build:js && yarn build:es",
71-
"build:js":
72-
"cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
73-
"build:es":
74-
"cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
89+
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
90+
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
7591
"build:storybook": "build-storybook --output-dir docs",
7692
"clear": "rimraf ./lib",
7793
"commitmsg": "validate-commit-msg",

0 commit comments

Comments
 (0)