@twin.org/node-core 0.0.2-next.21 → 0.0.2-next.22

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.
@@ -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.21" // x-release-please-version
1987
+ version: nodeOptions?.serverVersion ?? "0.0.2-next.22" // x-release-please-version
1988
1988
  };
1989
1989
  cliCore.CLIDisplay.header(serverInfo.name, serverInfo.version, "đŸŒŠī¸ ");
1990
1990
  if (!core.Is.stringValue(nodeOptions?.executionDirectory)) {
@@ -2023,6 +2023,7 @@ async function run(nodeOptions) {
2023
2023
  overrideModuleImport(nodeOptions.executionDirectory ?? "");
2024
2024
  const { nodeEngineConfig, nodeEnvVars: envVars } = await buildConfiguration(
2025
2025
  // This is the only location in the code base that should access process.env directly
2026
+ // So we can safely disable the linting rule here.
2026
2027
  // eslint-disable-next-line no-restricted-syntax
2027
2028
  process.env, nodeOptions, serverInfo);
2028
2029
  cliCore.CLIDisplay.break();
@@ -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.21" // x-release-please-version
1966
+ version: nodeOptions?.serverVersion ?? "0.0.2-next.22" // x-release-please-version
1967
1967
  };
1968
1968
  CLIDisplay.header(serverInfo.name, serverInfo.version, "đŸŒŠī¸ ");
1969
1969
  if (!Is.stringValue(nodeOptions?.executionDirectory)) {
@@ -2002,6 +2002,7 @@ async function run(nodeOptions) {
2002
2002
  overrideModuleImport(nodeOptions.executionDirectory ?? "");
2003
2003
  const { nodeEngineConfig, nodeEnvVars: envVars } = await buildConfiguration(
2004
2004
  // This is the only location in the code base that should access process.env directly
2005
+ // So we can safely disable the linting rule here.
2005
2006
  // eslint-disable-next-line no-restricted-syntax
2006
2007
  process.env, nodeOptions, serverInfo);
2007
2008
  CLIDisplay.break();
package/docs/changelog.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @twin.org/node-core - Changelog
2
2
 
3
+ ## [0.0.2-next.22](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.21...node-core-v0.0.2-next.22) (2025-10-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * update engine dependency ([db290df](https://github.com/twinfoundation/node/commit/db290df3b18374f7d86da575c6048657b98c355b))
9
+
3
10
  ## [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
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node-core",
3
- "version": "0.0.2-next.21",
3
+ "version": "0.0.2-next.22",
4
4
  "description": "TWIN Node Core for serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",