@twin.org/node 0.0.3-next.11 → 0.0.3-next.12
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/docs/changelog.md +14 -0
- package/docs/examples.md +2 -2
- package/package.json +2 -2
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/node - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.12](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.11...node-v0.0.3-next.12) (2026-01-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/twinfoundation/node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.11](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.10...node-v0.0.3-next.11) (2026-01-19)
|
|
4
18
|
|
|
5
19
|
|
package/docs/examples.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
To run the command from the package either:
|
|
6
6
|
|
|
7
|
-
Install `@twin.org/node` and use the following command:
|
|
7
|
+
Install `@twin.org/node@next` and use the following command:
|
|
8
8
|
|
|
9
9
|
```shell
|
|
10
10
|
twin-node --help
|
|
@@ -13,7 +13,7 @@ twin-node --help
|
|
|
13
13
|
or
|
|
14
14
|
|
|
15
15
|
```shell
|
|
16
|
-
npx "@twin.org/node" --help
|
|
16
|
+
npx "@twin.org/node@next" --help
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
### Display help listing all commands
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.12",
|
|
4
4
|
"description": "TWIN Node serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.0.3-next.
|
|
17
|
+
"@twin.org/node-core": "0.0.3-next.12"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/twinfoundation/node/issues"
|