@tsparticles/updater-rotate 4.0.0-alpha.4 → 4.0.0-alpha.8
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/321.min.js.LICENSE.txt +1 -1
- package/browser/index.js +3 -3
- package/cjs/index.js +3 -3
- package/dist_browser_RotateUpdater_js.js +1 -1
- package/esm/index.js +3 -3
- package/package.json +2 -2
- package/report.html +3 -3
- package/tsparticles.updater.rotate.js +2 -2
- package/tsparticles.updater.rotate.min.js +1 -1
- package/tsparticles.updater.rotate.min.js.LICENSE.txt +1 -1
- package/types/index.d.ts +1 -1
- package/umd/index.js +3 -3
package/321.min.js.LICENSE.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Rotate Updater v4.0.0-alpha.
|
|
1
|
+
/*! tsParticles Rotate Updater v4.0.0-alpha.8 by Matteo Bruni */
|
package/browser/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export function loadRotateUpdater(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-alpha.
|
|
3
|
-
engine.register(e => {
|
|
1
|
+
export async function loadRotateUpdater(engine) {
|
|
2
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
3
|
+
await engine.register(e => {
|
|
4
4
|
e.addParticleUpdater("rotate", async (container) => {
|
|
5
5
|
const { RotateUpdater } = await import("./RotateUpdater.js");
|
|
6
6
|
return new RotateUpdater(container);
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export function loadRotateUpdater(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-alpha.
|
|
3
|
-
engine.register(e => {
|
|
1
|
+
export async function loadRotateUpdater(engine) {
|
|
2
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
3
|
+
await engine.register(e => {
|
|
4
4
|
e.addParticleUpdater("rotate", async (container) => {
|
|
5
5
|
const { RotateUpdater } = await import("./RotateUpdater.js");
|
|
6
6
|
return new RotateUpdater(container);
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export function loadRotateUpdater(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-alpha.
|
|
3
|
-
engine.register(e => {
|
|
1
|
+
export async function loadRotateUpdater(engine) {
|
|
2
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
3
|
+
await engine.register(e => {
|
|
4
4
|
e.addParticleUpdater("rotate", async (container) => {
|
|
5
5
|
const { RotateUpdater } = await import("./RotateUpdater.js");
|
|
6
6
|
return new RotateUpdater(container);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/updater-rotate",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.8",
|
|
4
4
|
"description": "tsParticles particles rotate updater",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"./package.json": "./package.json"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/engine": "4.0.0-alpha.
|
|
90
|
+
"@tsparticles/engine": "4.0.0-alpha.8"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": {
|
|
93
93
|
"access": "public"
|