Skip to content

Commit 8632156

Browse files
committed
- Updating version & dist files
1 parent 1dd27dc commit 8632156

File tree

11 files changed

+15
-17
lines changed

11 files changed

+15
-17
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ node_modules/
88
package-lock.json
99
src/fullpage.extensions.js
1010
src/js-extensions/**
11+
src/js-limited/**
1112
src/js/mixed/index.js
1213
dist/fullpage.extensions.js
14+
dist/fullpage.limited.js
15+
dist/fullpage.limited.min.js
1316
examples/bug**
1417
gulp/secret.js
1518
build/**
1619
local/**
17-
rollup.ext.config.js
20+
rollup.ext.config.js
21+
rollup.limited.config.js

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
---
2121

22-
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.34-brightgreen.svg)
22+
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.35-brightgreen.svg)
2323
[![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
2424
[![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95)
2525
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js)

dist/fullpage.extensions.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fullpage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5570,7 +5570,7 @@
55705570
});
55715571
});
55725572
var t = ["-"];
5573-
var n = "\x32\x30\x32\x35\x2d\x32\x2d\x32\x35".split("-"),
5573+
var n = "\x32\x30\x32\x35\x2d\x33\x2d\x31".split("-"),
55745574
e = new Date(n[0], n[1], n[2]),
55755575
r = ["se", "licen", "-", "v3", "l", "gp"];
55765576

dist/fullpage.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/.vscode/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "fullpage.js",
3-
"version": "4.0.34",
3+
"version": "4.0.35",
44
"description": "Create beautiful fullscreen snap scrolling websites",
55
"main": "dist/fullpage.js",
66
"scripts": {
77
"build": "gulp getDistFiles && gulp update-version && gulp css && rollup -c",
88
"extensions": "rollup --config rollup.ext.config.js && gulp update-version && gulp css && gulp moveExtensions && gulp moveExtensionsSRC && wait",
9+
"limited": "rollup --config rollup.limited.config.js && gulp update-version && gulp css && gulp moveLite && wait",
910
"dev": "rollup -c --watch",
1011
"test": "jest",
1112
"devtest": "jest --watch"

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import resolve from "@rollup/plugin-node-resolve";
33
import babel from "@rollup/plugin-babel";
44

55
const licenseContent = `/*!
6-
* fullPage 4.0.34
6+
* fullPage 4.0.35
77
* https://github.com/alvarotrigo/fullPage.js
88
*
99
* @license GPLv3 for open source use only

src/css/fullpage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.34
2+
* fullPage 4.0.35
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only

src/js/fullpage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function setAPI(){
6565
};
6666

6767
//public functions
68-
FP.version = '4.0.34';
68+
FP.version = '4.0.35';
6969

7070
FP.test = Object.assign(FP.test, {
7171
top: '0px',

0 commit comments

Comments
 (0)