@twin.org/node-core 0.0.1-next.7 → 0.0.1-next.8
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
|
@@ -568,7 +568,7 @@ async function run(options) {
|
|
|
568
568
|
try {
|
|
569
569
|
const serverInfo = {
|
|
570
570
|
name: options?.serverName ?? "TWIN Node Server",
|
|
571
|
-
version: options?.serverVersion ?? "0.0.1-next.
|
|
571
|
+
version: options?.serverVersion ?? "0.0.1-next.8" // x-release-please-version
|
|
572
572
|
};
|
|
573
573
|
console.log(`\u001B[4m🌩️ ${serverInfo.name} v${serverInfo.version}\u001B[24m\n`);
|
|
574
574
|
const executionDirectory = options?.executionDirectory ?? getExecutionDirectory();
|
package/dist/esm/index.mjs
CHANGED
|
@@ -547,7 +547,7 @@ async function run(options) {
|
|
|
547
547
|
try {
|
|
548
548
|
const serverInfo = {
|
|
549
549
|
name: options?.serverName ?? "TWIN Node Server",
|
|
550
|
-
version: options?.serverVersion ?? "0.0.1-next.
|
|
550
|
+
version: options?.serverVersion ?? "0.0.1-next.8" // x-release-please-version
|
|
551
551
|
};
|
|
552
552
|
console.log(`\u001B[4m🌩️ ${serverInfo.name} v${serverInfo.version}\u001B[24m\n`);
|
|
553
553
|
const executionDirectory = options?.executionDirectory ?? getExecutionDirectory();
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/node-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.8](https://github.com/twinfoundation/node/compare/node-core-v0.0.1-next.7...node-core-v0.0.1-next.8) (2025-06-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* improve default options and spec ([b538721](https://github.com/twinfoundation/node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
9
|
+
|
|
3
10
|
## [0.0.1-next.7](https://github.com/twinfoundation/node/compare/node-core-v0.0.1-next.6...node-core-v0.0.1-next.7) (2025-06-17)
|
|
4
11
|
|
|
5
12
|
|