@wooksjs/event-core 0.7.3 → 0.7.4
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/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -293,7 +293,7 @@ function resetContextInjector() {
|
|
|
293
293
|
//#region packages/event-core/src/storage.ts
|
|
294
294
|
const STORAGE_KEY = Symbol.for("wooks.core.asyncStorage");
|
|
295
295
|
const VERSION_KEY = Symbol.for("wooks.core.asyncStorage.version");
|
|
296
|
-
const CURRENT_VERSION = "0.7.
|
|
296
|
+
const CURRENT_VERSION = "0.7.3";
|
|
297
297
|
const _g = globalThis;
|
|
298
298
|
if (_g[STORAGE_KEY]) {
|
|
299
299
|
if (_g[VERSION_KEY] !== CURRENT_VERSION) throw new Error(`[wooks] Incompatible versions of @wooksjs/event-core detected: existing v${_g[VERSION_KEY]}, loading v${CURRENT_VERSION}. All packages must use the same @wooksjs/event-core version.`);
|
package/dist/index.mjs
CHANGED
|
@@ -270,7 +270,7 @@ function resetContextInjector() {
|
|
|
270
270
|
//#region packages/event-core/src/storage.ts
|
|
271
271
|
const STORAGE_KEY = Symbol.for("wooks.core.asyncStorage");
|
|
272
272
|
const VERSION_KEY = Symbol.for("wooks.core.asyncStorage.version");
|
|
273
|
-
const CURRENT_VERSION = "0.7.
|
|
273
|
+
const CURRENT_VERSION = "0.7.3";
|
|
274
274
|
const _g = globalThis;
|
|
275
275
|
if (_g[STORAGE_KEY]) {
|
|
276
276
|
if (_g[VERSION_KEY] !== CURRENT_VERSION) throw new Error(`[wooks] Incompatible versions of @wooksjs/event-core detected: existing v${_g[VERSION_KEY]}, loading v${CURRENT_VERSION}. All packages must use the same @wooksjs/event-core version.`);
|