@twin.org/node-core 0.0.2-next.20 â 0.0.2-next.21
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 +2 -1
- package/dist/esm/index.mjs +2 -1
- package/docs/changelog.md +7 -0
- package/locales/en.json +0 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -1984,7 +1984,7 @@ async function run(nodeOptions) {
|
|
|
1984
1984
|
nodeOptions ??= {};
|
|
1985
1985
|
const serverInfo = {
|
|
1986
1986
|
name: nodeOptions?.serverName ?? "TWIN Node Server",
|
|
1987
|
-
version: nodeOptions?.serverVersion ?? "0.0.2-next.
|
|
1987
|
+
version: nodeOptions?.serverVersion ?? "0.0.2-next.21" // x-release-please-version
|
|
1988
1988
|
};
|
|
1989
1989
|
cliCore.CLIDisplay.header(serverInfo.name, serverInfo.version, "đŠī¸ ");
|
|
1990
1990
|
if (!core.Is.stringValue(nodeOptions?.executionDirectory)) {
|
|
@@ -2030,6 +2030,7 @@ async function run(nodeOptions) {
|
|
|
2030
2030
|
if (!core.Is.empty(startResult)) {
|
|
2031
2031
|
for (const signal of ["SIGHUP", "SIGINT", "SIGTERM"]) {
|
|
2032
2032
|
process.on(signal, async () => {
|
|
2033
|
+
cliCore.CLIDisplay.value("Terminate Signal", signal);
|
|
2033
2034
|
await startResult.shutdown();
|
|
2034
2035
|
});
|
|
2035
2036
|
}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1963,7 +1963,7 @@ async function run(nodeOptions) {
|
|
|
1963
1963
|
nodeOptions ??= {};
|
|
1964
1964
|
const serverInfo = {
|
|
1965
1965
|
name: nodeOptions?.serverName ?? "TWIN Node Server",
|
|
1966
|
-
version: nodeOptions?.serverVersion ?? "0.0.2-next.
|
|
1966
|
+
version: nodeOptions?.serverVersion ?? "0.0.2-next.21" // x-release-please-version
|
|
1967
1967
|
};
|
|
1968
1968
|
CLIDisplay.header(serverInfo.name, serverInfo.version, "đŠī¸ ");
|
|
1969
1969
|
if (!Is.stringValue(nodeOptions?.executionDirectory)) {
|
|
@@ -2009,6 +2009,7 @@ async function run(nodeOptions) {
|
|
|
2009
2009
|
if (!Is.empty(startResult)) {
|
|
2010
2010
|
for (const signal of ["SIGHUP", "SIGINT", "SIGTERM"]) {
|
|
2011
2011
|
process.on(signal, async () => {
|
|
2012
|
+
CLIDisplay.value("Terminate Signal", signal);
|
|
2012
2013
|
await startResult.shutdown();
|
|
2013
2014
|
});
|
|
2014
2015
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/node-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.21](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.20...node-core-v0.0.2-next.21) (2025-10-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update engine dependency ([3494c31](https://github.com/twinfoundation/node/commit/3494c3144fd5ce6d3a9f2936c7890ab36795aeaa))
|
|
9
|
+
|
|
3
10
|
## [0.0.2-next.20](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.19...node-core-v0.0.2-next.20) (2025-10-06)
|
|
4
11
|
|
|
5
12
|
|
package/locales/en.json
CHANGED