Skip to content

Commit

Permalink
Merge pull request #345 from alvarotrigo/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
alvarotrigo authored Aug 7, 2022
2 parents 4d2fa09 + ecd1775 commit 358d975
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<p align="center">Official React wrapper for the <a target="_blank" href="https://github.com/alvarotrigo/fullPage.js/">fullpage.js library</a></p>

<p align="center">
<img src="https://img.shields.io/badge/react--fullpage-v0.1.26-brightgreen.svg" alt="react-fullpage version" />
<img src="https://img.shields.io/badge/react--fullpage-v0.1.27-brightgreen.svg" alt="react-fullpage version" />
</p>

- [Demo online](https://alvarotrigo.com/react-fullpage/) | [CodeSandbox](https://codesandbox.io/s/m34yq5q0qx)
Expand Down
4 changes: 2 additions & 2 deletions components/ReactFullpage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ class ReactFullpage extends React.Component {
}

importVendors() {
const { easing } = this.props;
if (easing) {
const { easing, css3 } = this.props;
if (easing && !css3) {
require('fullpage.js/vendors/easings.min');
}
}
Expand Down
10 changes: 5 additions & 5 deletions dist/react-fullpage-umd.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/react-fullpage.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/gatsby/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"serve": "gatsby serve"
},
"dependencies": {
"@fullpage/react-fullpage": "^0.1.26",
"@fullpage/react-fullpage": "^0.1.27",
"gatsby": "^3.13.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "cmswalker",
"license": "ISC",
"dependencies": {
"@fullpage/react-fullpage": "^0.1.26",
"@fullpage/react-fullpage": "^0.1.27",
"next": "^11.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fullpage/react-fullpage",
"version": "0.1.26",
"version": "0.1.27",
"description": "Official react wrapper for fullPage.js",
"author": "cmswalker",
"contributors": [
Expand All @@ -15,7 +15,7 @@
"homepage": "https://github.com/alvarotrigo/react-fullpage",
"types": "types/index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.dev.js",
"dev": "export SET NODE_OPTIONS=--openssl-legacy-provider && cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.dev.js",
"build:dev": "export SET NODE_OPTIONS=--openssl-legacy-provider && npx webpack --progress --mode development --config webpack.config.dev.js",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && NODE_ENV=prod webpack --mode production --progress --mode production --config webpack.config.build.js",
"test:cypress": "npx cypress run --spec 'cypress/integration/*'",
Expand Down Expand Up @@ -68,6 +68,6 @@
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"fullpage.js": "^4.0.9"
"fullpage.js": "^4.0.10"
}
}

0 comments on commit 358d975

Please sign in to comment.