Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade 1.6.9 #245

Merged
merged 1 commit into from
Feb 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
upgrade 1.6.9
  • Loading branch information
kidjp85 committed Feb 24, 2019
commit f9d45867631e81de06acb5978f77a316459b2f2e
7 changes: 5 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"presets": ["es2015", "stage-0", "react"],
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": ["transform-es2015-modules-commonjs"]
"plugins": ["@babel/plugin-transform-modules-commonjs"]
},
"production": {
"plugins": ["transform-react-remove-prop-types"]
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log for React-id-swiper

## [v1.6.9](https://github.com/kidjp85/react-id-swiper/compare/1.6.9...1.6.8) - Released on Feb 24th, 2019
* Upgrade swiper@4.4.6
* Update babel 7
* [PR-227](https://github.com/kidjp85/react-id-swiper/pull/227) by [jpetitcolas](https://github.com/jpetitcolas)

## [v1.6.8](https://github.com/kidjp85/react-id-swiper/compare/1.6.8...1.6.7) - Released on Sep 20th, 2018
* Upgrade swiper@4.4.1
* Put `src/styles` folder back which only support `css`, `scss`
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![Package Quality](http://npm.packagequality.com/badge/react-id-swiper.png)](http://packagequality.com/#?package=react-id-swiper)

react-id-swiper ( Newest version 1.6.8 )
react-id-swiper ( Newest version 1.6.9 )
========================================
> A library to use [Swiper](http://www.idangero.us/swiper/get-started/) as a ReactJs component
> (Providing lightweight version of Swiper which reduces ~40kb of minified size)
Expand Down Expand Up @@ -75,8 +75,8 @@ yarn add react-id-swiper
## You can also use the standalone UMD build

```html
<script src="https://unpkg.com/react-id-swiper@1.6.8/lib/react-id-swiper.js"></script>
<script src="https://unpkg.com/react-id-swiper@1.6.8/lib/react-id-swiper.min.js"></script>
<script src="https://unpkg.com/react-id-swiper@1.6.9/lib/react-id-swiper.js"></script>
<script src="https://unpkg.com/react-id-swiper@1.6.9/lib/react-id-swiper.min.js"></script>
```
## Recommendation

Expand All @@ -85,11 +85,11 @@ yarn add react-id-swiper
### Use Swiper stylesheet file from CDN

```html
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.1/css/swiper.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.6/css/swiper.css">
```

```html
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.1/css/swiper.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.6/css/swiper.min.css">
```

### OR
Expand Down
605 changes: 295 additions & 310 deletions lib/custom.js

Large diffs are not rendered by default.

652 changes: 313 additions & 339 deletions lib/index.js

Large diffs are not rendered by default.

5,654 changes: 4,294 additions & 1,360 deletions lib/react-id-swiper.custom.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/react-id-swiper.custom.min.js

Large diffs are not rendered by default.

Loading