@twin.org/node-core 0.0.2-next.10 → 0.0.2-next.11
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 +7 -0
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -1767,7 +1767,7 @@ async function run(nodeOptions) {
|
|
|
1767
1767
|
nodeOptions ??= {};
|
|
1768
1768
|
const serverInfo = {
|
|
1769
1769
|
name: nodeOptions?.serverName ?? "TWIN Node Server",
|
|
1770
|
-
version: nodeOptions?.serverVersion ?? "0.0.2-next.
|
|
1770
|
+
version: nodeOptions?.serverVersion ?? "0.0.2-next.11" // x-release-please-version
|
|
1771
1771
|
};
|
|
1772
1772
|
console.log(`\u001B[4m🌩️ ${serverInfo.name} v${serverInfo.version}\u001B[24m\n`);
|
|
1773
1773
|
if (!core.Is.stringValue(nodeOptions?.executionDirectory)) {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1746,7 +1746,7 @@ async function run(nodeOptions) {
|
|
|
1746
1746
|
nodeOptions ??= {};
|
|
1747
1747
|
const serverInfo = {
|
|
1748
1748
|
name: nodeOptions?.serverName ?? "TWIN Node Server",
|
|
1749
|
-
version: nodeOptions?.serverVersion ?? "0.0.2-next.
|
|
1749
|
+
version: nodeOptions?.serverVersion ?? "0.0.2-next.11" // x-release-please-version
|
|
1750
1750
|
};
|
|
1751
1751
|
console.log(`\u001B[4m🌩️ ${serverInfo.name} v${serverInfo.version}\u001B[24m\n`);
|
|
1752
1752
|
if (!Is.stringValue(nodeOptions?.executionDirectory)) {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/node-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.11](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.10...node-core-v0.0.2-next.11) (2025-09-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update rights management dependencies ([97ad02e](https://github.com/twinfoundation/node/commit/97ad02e4b74cfe5e722f74da2fc2229bbf004c0a))
|
|
9
|
+
|
|
3
10
|
## [0.0.2-next.10](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.9...node-core-v0.0.2-next.10) (2025-09-05)
|
|
4
11
|
|
|
5
12
|
|