@mako10k/shell-server 0.1.0 → 0.1.1
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/README.md +28 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -102,6 +102,34 @@ npm install
|
|
|
102
102
|
npm run build
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
## Release
|
|
106
|
+
|
|
107
|
+
1. Update `CHANGELOG.md` (`[Unreleased]`) using Added / Changed / Fixed / Security / Dependencies / Notes.
|
|
108
|
+
|
|
109
|
+
Create next version section from `[Unreleased]`:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
npm run changelog:release -- 0.1.1
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Version bump (updates `package.json`, creates Git commit/tag):
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
npm run version:patch
|
|
119
|
+
npm run version:minor
|
|
120
|
+
npm run version:major
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
2. Push commit/tag to GitHub.
|
|
124
|
+
|
|
125
|
+
Publish:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
npm publish
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
3. Create GitHub Release from the tag and copy the version section from `CHANGELOG.md`.
|
|
132
|
+
|
|
105
133
|
## Exports
|
|
106
134
|
|
|
107
135
|
- `@mako10k/shell-server/runtime`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mako10k/shell-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Shell execution daemon and runtime utilities for MCP tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,7 +33,11 @@
|
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsc -p tsconfig.json",
|
|
36
|
+
"changelog:release": "node scripts/changelog-release.mjs",
|
|
36
37
|
"prepublishOnly": "npm run build",
|
|
38
|
+
"version:patch": "npm version patch",
|
|
39
|
+
"version:minor": "npm version minor",
|
|
40
|
+
"version:major": "npm version major",
|
|
37
41
|
"test:e2e": "npm run build && node --test test/e2e-shell-server-cli.test.mjs"
|
|
38
42
|
},
|
|
39
43
|
"dependencies": {
|