Skip to content

Commit

Permalink
chore(release): 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Merino committed Sep 12, 2017
1 parent e6d0fa5 commit 305380a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 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.1.1"></a>
## [0.1.1](https://github.com/researchgate/react-intersection-list/compare/v0.1.0...v0.1.1) (2017-09-12)


### Bug Fixes

* **sentinel:** ensure sentinel re-observes after items render ([e6d0fa5](https://github.com/researchgate/react-intersection-list/commit/e6d0fa5))



<a name="0.1.0"></a>
# 0.1.0 (2017-09-11)

Expand Down
21 changes: 13 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@researchgate/react-intersection-list",
"description": "React List Component using the Intersection Observer API",
"version": "0.1.0",
"version": "0.1.1",
"author": "Luis Merino <[email protected]>",
"bugs": {
"url": "https://github.com/researchgate/react-intersection-list/issues"
Expand Down Expand Up @@ -39,7 +39,9 @@
"validate-commit-msg": "^2.14.0",
"whatwg-fetch": "^2.0.3"
},
"files": ["lib"],
"files": [
"lib"
],
"homepage": "https://github.com/researchgate/react-intersection-list#readme",
"keywords": [
"Intersection",
Expand All @@ -53,7 +55,10 @@
],
"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 @@ -67,14 +72,14 @@
},
"jest": {
"rootDir": "src",
"testMatch": ["**/__tests__/**/*.spec.js"]
"testMatch": [
"**/__tests__/**/*.spec.js"
]
},
"scripts": {
"build": "npm run build:js && npm run 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",
"create-github-release": "conventional-github-releaser -p angular",
"clear": "rimraf ./lib",
Expand Down

0 comments on commit 305380a

Please sign in to comment.