Skip to content

Commit

Permalink
chore(release): 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Merino committed Nov 24, 2017
1 parent 12ba423 commit b81a37f
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 10 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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="1.0.0"></a>
# [1.0.0](https://github.com/researchgate/react-intersection-list/compare/v0.4.1...v1.0.0) (2017-11-24)


### Features

* **React16:** support for React 16 ([12ba423](https://github.com/researchgate/react-intersection-list/commit/12ba423))
* **setRootNode:** save call to getComputedStyle if root node is unchanged ([80659dd](https://github.com/researchgate/react-intersection-list/commit/80659dd))


### BREAKING CHANGES

* **React16:** <sentinel> tag replaced by a <span> tag.
* **React16:** deprecation warning will not longer appear for itemsLength prop.



<a name="0.4.1"></a>
## [0.4.1](https://github.com/researchgate/react-intersection-list/compare/v0.4.0...v0.4.1) (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-list",
"description": "React List Component using the Intersection Observer API",
"version": "0.4.1",
"version": "1.0.0",
"author": "Luis Merino <[email protected]>",
"bugs": {
"url": "https://github.com/researchgate/react-intersection-list/issues"
Expand Down Expand Up @@ -43,12 +43,26 @@
"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", "Observer", "react", "component", "list", "infinite", "scrollable", "researchgate"],
"keywords": [
"Intersection",
"Observer",
"react",
"component",
"list",
"infinite",
"scrollable",
"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 @@ -62,15 +76,17 @@
},
"jest": {
"rootDir": "src",
"testMatch": ["**/__tests__/**/*.spec.js"],
"setupFiles": ["raf/polyfill"]
"testMatch": [
"**/__tests__/**/*.spec.js"
],
"setupFiles": [
"raf/polyfill"
]
},
"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 b81a37f

Please sign in to comment.