@twin.org/modules 0.0.2-next.15 → 0.0.2-next.17
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +36 -0
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -32,7 +32,7 @@ class ModuleHelper {
|
|
|
32
32
|
try {
|
|
33
33
|
let useDefault = true;
|
|
34
34
|
const overrideImport = core.SharedStore.get("overrideImport");
|
|
35
|
-
if (
|
|
35
|
+
if (core.Is.function(overrideImport)) {
|
|
36
36
|
const overrideResult = await overrideImport(module);
|
|
37
37
|
moduleInstance = overrideResult.module;
|
|
38
38
|
useDefault = overrideResult.useDefault;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -30,7 +30,7 @@ class ModuleHelper {
|
|
|
30
30
|
try {
|
|
31
31
|
let useDefault = true;
|
|
32
32
|
const overrideImport = SharedStore.get("overrideImport");
|
|
33
|
-
if (
|
|
33
|
+
if (Is.function(overrideImport)) {
|
|
34
34
|
const overrideResult = await overrideImport(module);
|
|
35
35
|
moduleInstance = overrideResult.module;
|
|
36
36
|
useDefault = overrideResult.useDefault;
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @twin.org/modules - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/modules-v0.0.2-next.16...modules-v0.0.2-next.17) (2025-09-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **modules:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/core bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
16
|
+
* @twin.org/nameof bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
17
|
+
* devDependencies
|
|
18
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
19
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
20
|
+
|
|
21
|
+
## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/modules-v0.0.2-next.15...modules-v0.0.2-next.16) (2025-09-28)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
* The following workspace dependencies were updated
|
|
32
|
+
* dependencies
|
|
33
|
+
* @twin.org/core bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
34
|
+
* @twin.org/nameof bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
35
|
+
* devDependencies
|
|
36
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
37
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
38
|
+
|
|
3
39
|
## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/modules-v0.0.2-next.14...modules-v0.0.2-next.15) (2025-09-22)
|
|
4
40
|
|
|
5
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/modules",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.17",
|
|
4
4
|
"description": "Helper classes for loading and executing from modules",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/core": "0.0.2-next.
|
|
18
|
-
"@twin.org/nameof": "0.0.2-next.
|
|
17
|
+
"@twin.org/core": "0.0.2-next.17",
|
|
18
|
+
"@twin.org/nameof": "0.0.2-next.17"
|
|
19
19
|
},
|
|
20
20
|
"main": "./dist/cjs/index.cjs",
|
|
21
21
|
"module": "./dist/esm/index.mjs",
|