@decaf-ts/core 0.15.0 → 0.17.0
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/core.cjs +1 -1
- package/dist/core.js +1 -1
- package/dist/core.js.map +1 -1
- package/lib/cjs/index.cjs +1 -1
- package/lib/cjs/overrides/index.cjs +1 -0
- package/lib/cjs/overrides/index.js.map +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/overrides/index.js +1 -0
- package/lib/esm/overrides/index.js.map +1 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/overrides/index.d.ts +1 -0
- package/package.json +61 -24
package/lib/cjs/index.cjs
CHANGED
|
@@ -50,7 +50,7 @@ __exportStar(require("./persistence/index.cjs"), exports);
|
|
|
50
50
|
* @const VERSION
|
|
51
51
|
* @memberOf module:core
|
|
52
52
|
*/
|
|
53
|
-
exports.VERSION = "0.
|
|
53
|
+
exports.VERSION = "0.16.0";
|
|
54
54
|
/**
|
|
55
55
|
* @description Stores the current package version
|
|
56
56
|
* @summary A constant representing the version of the core package
|
|
@@ -19,6 +19,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
* @summary This file exports all the necessary components for the overrides functionality, including Metadata, injectables, Model, and overrides.
|
|
20
20
|
* @module core/overrides
|
|
21
21
|
*/
|
|
22
|
+
require("./overrides.cjs");
|
|
22
23
|
__exportStar(require("./Metadata.cjs"), exports);
|
|
23
24
|
__exportStar(require("./injectables.cjs"), exports);
|
|
24
25
|
__exportStar(require("./Model.cjs"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;;GAIG;AACH,iDAA2B;AAC3B,oDAA8B;AAC9B,8CAAwB;AACxB,kDAA4B;AAC5B,qDAA+B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;;GAIG;AACH,2BAAqB;AAErB,iDAA2B;AAC3B,oDAA8B;AAC9B,8CAAwB;AACxB,kDAA4B;AAC5B,qDAA+B"}
|
package/lib/esm/index.js
CHANGED
|
@@ -33,7 +33,7 @@ export * from "./persistence/index.js";
|
|
|
33
33
|
* @const VERSION
|
|
34
34
|
* @memberOf module:core
|
|
35
35
|
*/
|
|
36
|
-
export const VERSION = "0.
|
|
36
|
+
export const VERSION = "0.16.0";
|
|
37
37
|
/**
|
|
38
38
|
* @description Stores the current package version
|
|
39
39
|
* @summary A constant representing the version of the core package
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* @summary This file exports all the necessary components for the overrides functionality, including Metadata, injectables, Model, and overrides.
|
|
4
4
|
* @module core/overrides
|
|
5
5
|
*/
|
|
6
|
+
import "./overrides.js";
|
|
6
7
|
export * from "./Metadata.js";
|
|
7
8
|
export * from "./injectables.js";
|
|
8
9
|
export * from "./Model.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,8BAA2B;AAC3B,iCAA8B;AAC9B,2BAAwB;AACxB,+BAA4B;AAC5B,kCAA+B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/overrides/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,wBAAqB;AAErB,8BAA2B;AAC3B,iCAA8B;AAC9B,2BAAwB;AACxB,+BAA4B;AAC5B,kCAA+B"}
|
package/lib/types/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export * from "./persistence";
|
|
|
24
24
|
* @const VERSION
|
|
25
25
|
* @memberOf module:core
|
|
26
26
|
*/
|
|
27
|
-
export declare const VERSION = "0.
|
|
27
|
+
export declare const VERSION = "0.16.0";
|
|
28
28
|
/**
|
|
29
29
|
* @description Stores the current package version
|
|
30
30
|
* @summary A constant representing the version of the core package
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* @summary This file exports all the necessary components for the overrides functionality, including Metadata, injectables, Model, and overrides.
|
|
4
4
|
* @module core/overrides
|
|
5
5
|
*/
|
|
6
|
+
import "./overrides";
|
|
6
7
|
export * from "./Metadata";
|
|
7
8
|
export * from "./injectables";
|
|
8
9
|
export * from "./Model";
|
package/package.json
CHANGED
|
@@ -1,53 +1,88 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Core persistence module for the decaf framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./lib/types/index.d.mts",
|
|
10
|
+
"default": "./lib/esm/index.js"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./lib/types/index.d.cts",
|
|
14
|
+
"default": "./lib/cjs/index.cjs"
|
|
15
|
+
},
|
|
11
16
|
"default": "./lib/esm/index.js"
|
|
12
17
|
},
|
|
13
18
|
"./migrations": {
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./lib/types/migrations/index.d.mts",
|
|
21
|
+
"default": "./lib/esm/migrations/index.js"
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"types": "./lib/types/migrations/index.d.cts",
|
|
25
|
+
"default": "./lib/cjs/migrations/index.cjs"
|
|
26
|
+
},
|
|
17
27
|
"default": "./lib/esm/migrations/index.js"
|
|
18
28
|
},
|
|
19
29
|
"./migrations/SemverMigrationVersioning": {
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
30
|
+
"import": {
|
|
31
|
+
"types": "./lib/types/migrations/SemverMigrationVersioning.d.mts",
|
|
32
|
+
"default": "./lib/esm/migrations/SemverMigrationVersioning.js"
|
|
33
|
+
},
|
|
34
|
+
"require": {
|
|
35
|
+
"types": "./lib/types/migrations/SemverMigrationVersioning.d.cts",
|
|
36
|
+
"default": "./lib/cjs/migrations/SemverMigrationVersioning.cjs"
|
|
37
|
+
},
|
|
23
38
|
"default": "./lib/esm/migrations/SemverMigrationVersioning.js"
|
|
24
39
|
},
|
|
25
40
|
"./ram": {
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
41
|
+
"import": {
|
|
42
|
+
"types": "./lib/types/ram/index.d.mts",
|
|
43
|
+
"default": "./lib/esm/ram/index.js"
|
|
44
|
+
},
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./lib/types/ram/index.d.cts",
|
|
47
|
+
"default": "./lib/cjs/ram/index.cjs"
|
|
48
|
+
},
|
|
29
49
|
"default": "./lib/esm/ram/index.js"
|
|
30
50
|
},
|
|
31
51
|
"./fs": {
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
52
|
+
"import": {
|
|
53
|
+
"types": "./lib/types/fs/index.d.mts",
|
|
54
|
+
"default": "./lib/esm/fs/index.js"
|
|
55
|
+
},
|
|
56
|
+
"require": {
|
|
57
|
+
"types": "./lib/types/fs/index.d.cts",
|
|
58
|
+
"default": "./lib/cjs/fs/index.cjs"
|
|
59
|
+
},
|
|
35
60
|
"default": "./lib/esm/fs/index.js"
|
|
36
61
|
},
|
|
37
62
|
"./tasks": {
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
63
|
+
"import": {
|
|
64
|
+
"types": "./lib/types/tasks/index.d.mts",
|
|
65
|
+
"default": "./lib/esm/tasks/index.js"
|
|
66
|
+
},
|
|
67
|
+
"require": {
|
|
68
|
+
"types": "./lib/types/tasks/index.d.cts",
|
|
69
|
+
"default": "./lib/cjs/tasks/index.cjs"
|
|
70
|
+
},
|
|
41
71
|
"default": "./lib/esm/tasks/index.js"
|
|
42
72
|
},
|
|
43
73
|
"./workers": {
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
74
|
+
"import": {
|
|
75
|
+
"types": "./lib/types/workers/index.d.mts",
|
|
76
|
+
"default": "./lib/esm/workers/index.js"
|
|
77
|
+
},
|
|
78
|
+
"require": {
|
|
79
|
+
"types": "./lib/types/workers/index.d.cts",
|
|
80
|
+
"default": "./lib/cjs/workers/index.cjs"
|
|
81
|
+
},
|
|
47
82
|
"default": "./lib/esm/workers/index.js"
|
|
48
83
|
}
|
|
49
84
|
},
|
|
50
|
-
"types": "./lib/types/index.d.
|
|
85
|
+
"types": "./lib/types/index.d.mts",
|
|
51
86
|
"scripts": {
|
|
52
87
|
"do-install": "NPM_TOKEN=$(cat .npmtoken) npm install",
|
|
53
88
|
"update-dependencies": "PREFIX=\"decaf-ts\"; npm ls | grep \"$PREFIX\" | awk -F/ '{print $NF}' | sed 's/@.*//' | xargs -I package npm update @\"$PREFIX\"/package",
|
|
@@ -136,6 +171,8 @@
|
|
|
136
171
|
"module": "./lib/esm/index.js",
|
|
137
172
|
"sideEffects": [
|
|
138
173
|
"./lib/esm/overrides/index.js",
|
|
139
|
-
"./lib/
|
|
174
|
+
"./lib/esm/overrides/overrides.js",
|
|
175
|
+
"./lib/cjs/overrides/index.cjs",
|
|
176
|
+
"./lib/cjs/overrides/overrides.cjs"
|
|
140
177
|
]
|
|
141
178
|
}
|