Skip to content

Commit e0b54f9

Browse files
Upgrade to NodeJS 20
2 parents 2c79f96 + 74e9421 commit e0b54f9

File tree

5 files changed

+119
-795
lines changed

5 files changed

+119
-795
lines changed

bower.json

+6-26
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,12 @@
11
{
22
"name": "mojs-player",
3-
"version": "1.0.0",
3+
"version": "1.2.0",
44
"description": "Player controls for [mojs](mojs.github.io). Intended to help you to craft `mojs` animation sequences.",
55
"main": "build/mojs-player.min.js",
6-
"authors": [
7-
"Oleg Solomka"
8-
],
6+
"authors": ["Oleg Solomka"],
97
"license": "MIT",
10-
"keywords": [
11-
"motion",
12-
"effects",
13-
"animation",
14-
"motion",
15-
"graphics",
16-
"player"
17-
],
8+
"keywords": ["motion", "effects", "animation", "motion", "graphics", "player"],
189
"homepage": "https://github.com/mojs/mojs-player",
19-
"moduleType": [
20-
"amd",
21-
"node",
22-
"es6",
23-
"globals"
24-
],
25-
"ignore": [
26-
"**/.*",
27-
"node_modules",
28-
"bower_components",
29-
"test",
30-
"tests"
31-
]
32-
}
10+
"moduleType": ["amd", "node", "es6", "globals"],
11+
"ignore": ["**/.*", "node_modules", "bower_components", "test", "tests"]
12+
}

build/mojs-player.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ return /******/ (function(modules) { // webpackBootstrap
181181

182182
this._play = this._play.bind(this);
183183

184-
this.revision = '1.1.0';
184+
this.revision = '1.2.0';
185185

186186
var str = this._fallbackTo(this._o.name, this._defaults.name);
187187
str += str === this._defaults.name ? '' : '__' + this._defaults.name;

js/mojs-player.babel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class MojsPlayer extends Module {
5050

5151
this._play = this._play.bind(this);
5252

53-
this.revision = '1.1.0';
53+
this.revision = '1.2.0';
5454

5555
let str = this._fallbackTo( this._o.name, this._defaults.name );
5656
str += ( str === this._defaults.name ) ? '' : `__${this._defaults.name}`;

0 commit comments

Comments
 (0)