Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
chore(release): 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wuweiweiwu committed Nov 12, 2019
1 parent 72ab3f9 commit 4f285e7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Change Log
# Changelog

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.

### [5.1.1](https://github.com/frontend-collective/react-image-lightbox/compare/v5.1.0...v5.1.1) (2019-11-12)


### Bug Fixes

* allow React.ReactNode as imageTitle and imageCaption in TypeScript projects ([#158](https://github.com/frontend-collective/react-image-lightbox/issues/158)) ([f1858a3](https://github.com/frontend-collective/react-image-lightbox/commit/f1858a3efe25b66b850565b308688669bd7bab66))
* demo parcel site on github pages ([822140e](https://github.com/frontend-collective/react-image-lightbox/commit/822140ed665f55f664c1a5ea851f6b3aeaed31db))
* don't prevent default inside a passive listener ([b2b6a79](https://github.com/frontend-collective/react-image-lightbox/commit/b2b6a798671de7027635123baec8584e3fefaaf2))
* fix getOrigin issue within iFrames ([#175](https://github.com/frontend-collective/react-image-lightbox/issues/175)) ([f290cb3](https://github.com/frontend-collective/react-image-lightbox/commit/f290cb344ac89f6359b39c0fd4ab8fe00bb36205)), closes [#136](https://github.com/frontend-collective/react-image-lightbox/issues/136)
* fix lint ([c2acf2c](https://github.com/frontend-collective/react-image-lightbox/commit/c2acf2ccd86610ad89f3af497e4eefc911da68ac))

<a name="5.1.0"></a>

# [5.1.0](https://github.com/frontend-collective/react-image-lightbox/compare/v5.0.0...v5.1.0) (2018-12-10)
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-image-lightbox",
"version": "5.1.0",
"version": "5.1.1",
"description": "A lightbox component for React.js",
"scripts": {
"build": "rollup -c",
Expand All @@ -13,7 +13,8 @@
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:watch": "jest --watchAll",
"deploy": "npm run build:demo && gh-pages -d build"
"deploy": "npm run build:demo && gh-pages -d build",
"release": "standard-version"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
Expand All @@ -35,7 +36,9 @@
],
"license": "MIT",
"jest": {
"setupFilesAfterEnv": ["./node_modules/jest-enzyme/lib/index.js"],
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
],
"setupFiles": [
"./test-config/shim.js",
"./test-config/test-setup.js"
Expand Down Expand Up @@ -95,7 +98,8 @@
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^2.0.3"
"rollup-plugin-postcss": "^2.0.3",
"standard-version": "^7.0.0"
},
"keywords": [
"react",
Expand Down

0 comments on commit 4f285e7

Please sign in to comment.