Skip to content

Commit 305380a

Browse files
author
Luis Merino
committed
chore(release): 0.1.1
1 parent e6d0fa5 commit 305380a

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
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.1.1"></a>
6+
## [0.1.1](https://github.com/researchgate/react-intersection-list/compare/v0.1.0...v0.1.1) (2017-09-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **sentinel:** ensure sentinel re-observes after items render ([e6d0fa5](https://github.com/researchgate/react-intersection-list/commit/e6d0fa5))
12+
13+
14+
515
<a name="0.1.0"></a>
616
# 0.1.0 (2017-09-11)
717

package.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@researchgate/react-intersection-list",
33
"description": "React List Component using the Intersection Observer API",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"author": "Luis Merino <[email protected]>",
66
"bugs": {
77
"url": "https://github.com/researchgate/react-intersection-list/issues"
@@ -39,7 +39,9 @@
3939
"validate-commit-msg": "^2.14.0",
4040
"whatwg-fetch": "^2.0.3"
4141
},
42-
"files": ["lib"],
42+
"files": [
43+
"lib"
44+
],
4345
"homepage": "https://github.com/researchgate/react-intersection-list#readme",
4446
"keywords": [
4547
"Intersection",
@@ -53,7 +55,10 @@
5355
],
5456
"license": "MIT",
5557
"lint-staged": {
56-
"{src,docs/docs}/**/*.js": ["eslint --fix", "git add"]
58+
"{src,docs/docs}/**/*.js": [
59+
"eslint --fix",
60+
"git add"
61+
]
5762
},
5863
"main": "lib/js/index.js",
5964
"module": "lib/es/index.js",
@@ -67,14 +72,14 @@
6772
},
6873
"jest": {
6974
"rootDir": "src",
70-
"testMatch": ["**/__tests__/**/*.spec.js"]
75+
"testMatch": [
76+
"**/__tests__/**/*.spec.js"
77+
]
7178
},
7279
"scripts": {
7380
"build": "npm run build:js && npm run build:es",
74-
"build:js":
75-
"cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
76-
"build:es":
77-
"cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
81+
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
82+
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
7883
"build:storybook": "build-storybook --output-dir docs",
7984
"create-github-release": "conventional-github-releaser -p angular",
8085
"clear": "rimraf ./lib",

0 commit comments

Comments
 (0)