@wooksjs/event-core 0.7.0 → 0.7.1
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
|
@@ -286,7 +286,7 @@ function replaceContextInjector(newCi) {
|
|
|
286
286
|
//#region packages/event-core/src/storage.ts
|
|
287
287
|
const STORAGE_KEY = Symbol.for("wooks.core.asyncStorage");
|
|
288
288
|
const VERSION_KEY = Symbol.for("wooks.core.asyncStorage.version");
|
|
289
|
-
const CURRENT_VERSION = "0.
|
|
289
|
+
const CURRENT_VERSION = "0.7.0";
|
|
290
290
|
const _g = globalThis;
|
|
291
291
|
if (_g[STORAGE_KEY]) {
|
|
292
292
|
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
|
@@ -263,7 +263,7 @@ function replaceContextInjector(newCi) {
|
|
|
263
263
|
//#region packages/event-core/src/storage.ts
|
|
264
264
|
const STORAGE_KEY = Symbol.for("wooks.core.asyncStorage");
|
|
265
265
|
const VERSION_KEY = Symbol.for("wooks.core.asyncStorage.version");
|
|
266
|
-
const CURRENT_VERSION = "0.
|
|
266
|
+
const CURRENT_VERSION = "0.7.0";
|
|
267
267
|
const _g = globalThis;
|
|
268
268
|
if (_g[STORAGE_KEY]) {
|
|
269
269
|
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.`);
|