targetj 1.0.207 → 1.0.208
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Export.js +2 -0
- package/build/index.js +11 -0
- package/dist/targetjs.js +1 -1
- package/dist/targetjs.js.gz +0 -0
- package/package.json +1 -1
package/Export.js
CHANGED
|
@@ -14,6 +14,7 @@ export * from "./build/BracketGenerator.js";
|
|
|
14
14
|
export * from "./build/ColorUtil.js";
|
|
15
15
|
export * from "./build/Easing.js";
|
|
16
16
|
export * from "./build/TargetExecutor.js";
|
|
17
|
+
export * from "./build/AnimationManager.js";
|
|
17
18
|
|
|
18
19
|
import * as App from './build/App.js';
|
|
19
20
|
import * as TModel from './build/TModel.js';
|
|
@@ -31,6 +32,7 @@ import * as BracketGenerator from './build/BracketGenerator.js';
|
|
|
31
32
|
import * as ColorUtil from './build/ColorUtil.js';
|
|
32
33
|
import * as Easing from './build/Easing.js';
|
|
33
34
|
import * as TargetExecutor from './build/TargetExecutor.js';
|
|
35
|
+
import * as AnimationManager from './build/AnimationManager.js';
|
|
34
36
|
|
|
35
37
|
const TargetJS = {
|
|
36
38
|
...App,
|
package/build/index.js
CHANGED
|
@@ -178,4 +178,15 @@ Object.keys(_TargetExecutor).forEach(function (key) {
|
|
|
178
178
|
return _TargetExecutor[key];
|
|
179
179
|
}
|
|
180
180
|
});
|
|
181
|
+
});
|
|
182
|
+
var _AnimationManager = require("./AnimationManager.js");
|
|
183
|
+
Object.keys(_AnimationManager).forEach(function (key) {
|
|
184
|
+
if (key === "default" || key === "__esModule") return;
|
|
185
|
+
if (key in exports && exports[key] === _AnimationManager[key]) return;
|
|
186
|
+
Object.defineProperty(exports, key, {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: function get() {
|
|
189
|
+
return _AnimationManager[key];
|
|
190
|
+
}
|
|
191
|
+
});
|
|
181
192
|
});
|