Skip to content

Commit

Permalink
Upgrade to NodeJS 20
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierfoucrier committed Jul 17, 2023
2 parents 2c79f96 + 74e9421 commit e0b54f9
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 795 deletions.
32 changes: 6 additions & 26 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,12 @@
{
"name": "mojs-player",
"version": "1.0.0",
"version": "1.2.0",
"description": "Player controls for [mojs](mojs.github.io). Intended to help you to craft `mojs` animation sequences.",
"main": "build/mojs-player.min.js",
"authors": [
"Oleg Solomka"
],
"authors": ["Oleg Solomka"],
"license": "MIT",
"keywords": [
"motion",
"effects",
"animation",
"motion",
"graphics",
"player"
],
"keywords": ["motion", "effects", "animation", "motion", "graphics", "player"],
"homepage": "https://github.com/mojs/mojs-player",
"moduleType": [
"amd",
"node",
"es6",
"globals"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
"moduleType": ["amd", "node", "es6", "globals"],
"ignore": ["**/.*", "node_modules", "bower_components", "test", "tests"]
}
2 changes: 1 addition & 1 deletion build/mojs-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ return /******/ (function(modules) { // webpackBootstrap

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

this.revision = '1.1.0';
this.revision = '1.2.0';

var str = this._fallbackTo(this._o.name, this._defaults.name);
str += str === this._defaults.name ? '' : '__' + this._defaults.name;
Expand Down
2 changes: 1 addition & 1 deletion js/mojs-player.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class MojsPlayer extends Module {

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

this.revision = '1.1.0';
this.revision = '1.2.0';

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

0 comments on commit e0b54f9

Please sign in to comment.