Skip to content

Commit

Permalink
v23.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Jan 15, 2024
1 parent e2c7129 commit 4510411
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions dist/tween.amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,12 +424,12 @@ define(['exports'], (function (exports) { 'use strict';
throw new Error('Can not call Tween.to() while Tween is already started or paused. Stop the Tween first.');
this._valuesEnd = target;
this._propertiesAreSetUp = false;
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.duration = function (duration) {
if (duration === void 0) { duration = 1000; }
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.dynamic = function (dynamic) {
Expand Down Expand Up @@ -832,7 +832,7 @@ define(['exports'], (function (exports) { 'use strict';
return Tween;
}());

var VERSION = '23.1.0';
var VERSION = '23.1.1';

/**
* Tween.js - Licensed under the MIT license
Expand Down
6 changes: 3 additions & 3 deletions dist/tween.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -426,12 +426,12 @@ var Tween = /** @class */ (function () {
throw new Error('Can not call Tween.to() while Tween is already started or paused. Stop the Tween first.');
this._valuesEnd = target;
this._propertiesAreSetUp = false;
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.duration = function (duration) {
if (duration === void 0) { duration = 1000; }
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.dynamic = function (dynamic) {
Expand Down Expand Up @@ -834,7 +834,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '23.1.0';
var VERSION = '23.1.1';

/**
* Tween.js - Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion dist/tween.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ declare class Sequence {
static nextId(): number;
}

declare const VERSION = "23.1.0";
declare const VERSION = "23.1.1";

declare const nextId: typeof Sequence.nextId;
declare const getAll: () => Tween<UnknownProps>[];
Expand Down
6 changes: 3 additions & 3 deletions dist/tween.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,12 +422,12 @@ var Tween = /** @class */ (function () {
throw new Error('Can not call Tween.to() while Tween is already started or paused. Stop the Tween first.');
this._valuesEnd = target;
this._propertiesAreSetUp = false;
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.duration = function (duration) {
if (duration === void 0) { duration = 1000; }
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.dynamic = function (dynamic) {
Expand Down Expand Up @@ -830,7 +830,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '23.1.0';
var VERSION = '23.1.1';

/**
* Tween.js - Licensed under the MIT license
Expand Down
6 changes: 3 additions & 3 deletions dist/tween.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,12 +428,12 @@
throw new Error('Can not call Tween.to() while Tween is already started or paused. Stop the Tween first.');
this._valuesEnd = target;
this._propertiesAreSetUp = false;
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.duration = function (duration) {
if (duration === void 0) { duration = 1000; }
this._duration = duration;
this._duration = duration < 0 ? 0 : duration;
return this;
};
Tween.prototype.dynamic = function (dynamic) {
Expand Down Expand Up @@ -836,7 +836,7 @@
return Tween;
}());

var VERSION = '23.1.0';
var VERSION = '23.1.1';

/**
* Tween.js - Licensed under the MIT license
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tweenjs/tween.js",
"description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
"version": "23.1.0",
"version": "23.1.1",
"type": "module",
"main": "dist/tween.cjs",
"types": "dist/tween.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/Version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const VERSION = '23.1.0'
const VERSION = '23.1.1'
export default VERSION

0 comments on commit 4510411

Please sign in to comment.