@decaf-ts/core 0.14.5 → 0.14.6

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/lib/cjs/index.cjs CHANGED
@@ -49,7 +49,7 @@ __exportStar(require("./persistence/index.cjs"), exports);
49
49
  * @const VERSION
50
50
  * @memberOf module:core
51
51
  */
52
- exports.VERSION = "0.14.4";
52
+ exports.VERSION = "0.14.5";
53
53
  /**
54
54
  * @description Stores the current package version
55
55
  * @summary A constant representing the version of the core package
package/lib/esm/index.js CHANGED
@@ -32,7 +32,7 @@ export * from "./persistence/index.js";
32
32
  * @const VERSION
33
33
  * @memberOf module:core
34
34
  */
35
- export const VERSION = "0.14.4";
35
+ export const VERSION = "0.14.5";
36
36
  /**
37
37
  * @description Stores the current package version
38
38
  * @summary A constant representing the version of the core package
@@ -23,7 +23,7 @@ export * from "./persistence";
23
23
  * @const VERSION
24
24
  * @memberOf module:core
25
25
  */
26
- export declare const VERSION = "0.14.4";
26
+ export declare const VERSION = "0.14.5";
27
27
  /**
28
28
  * @description Stores the current package version
29
29
  * @summary A constant representing the version of the core package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/core",
3
- "version": "0.14.5",
3
+ "version": "0.14.6",
4
4
  "description": "Core persistence module for the decaf framework",
5
5
  "type": "module",
6
6
  "exports": {
@@ -133,5 +133,8 @@
133
133
  },
134
134
  "main": "./lib/cjs/index.cjs",
135
135
  "module": "./lib/esm/index.js",
136
- "sideEffects": false
136
+ "sideEffects": [
137
+ "./lib/esm/overrides/index.js",
138
+ "./lib/cjs/overrides/index.cjs"
139
+ ]
137
140
  }