@decaf-ts/core 0.14.5 → 0.14.7
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 +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/types/index.d.ts +1 -1
- package/package.json +7 -3
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.
|
|
52
|
+
exports.VERSION = "0.14.6";
|
|
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.
|
|
35
|
+
export const VERSION = "0.14.6";
|
|
36
36
|
/**
|
|
37
37
|
* @description Stores the current package version
|
|
38
38
|
* @summary A constant representing the version of the core package
|
package/lib/types/index.d.ts
CHANGED
|
@@ -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.
|
|
26
|
+
export declare const VERSION = "0.14.6";
|
|
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.
|
|
3
|
+
"version": "0.14.7",
|
|
4
4
|
"description": "Core persistence module for the decaf framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -126,12 +126,16 @@
|
|
|
126
126
|
"@decaf-ts/decoration": "latest",
|
|
127
127
|
"@decaf-ts/decorator-validation": "latest",
|
|
128
128
|
"@decaf-ts/injectable-decorators": "latest",
|
|
129
|
-
"@decaf-ts/transactional-decorators": "latest"
|
|
129
|
+
"@decaf-ts/transactional-decorators": "latest",
|
|
130
|
+
"@types/semver": "^7.7.1"
|
|
130
131
|
},
|
|
131
132
|
"optionalDependencies": {
|
|
132
133
|
"semver": "^7.7.2"
|
|
133
134
|
},
|
|
134
135
|
"main": "./lib/cjs/index.cjs",
|
|
135
136
|
"module": "./lib/esm/index.js",
|
|
136
|
-
"sideEffects":
|
|
137
|
+
"sideEffects": [
|
|
138
|
+
"./lib/esm/overrides/index.js",
|
|
139
|
+
"./lib/cjs/overrides/index.cjs"
|
|
140
|
+
]
|
|
137
141
|
}
|