@bridgetek/pre820-mcp-server 1.0.0 → 1.0.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 +15 -9
- package/dist/server.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -104,8 +104,8 @@ EveApps repository + indexes
|
|
|
104
104
|
Build from the monorepo root:
|
|
105
105
|
|
|
106
106
|
```sh
|
|
107
|
-
# Install dependencies:
|
|
108
|
-
npm
|
|
107
|
+
# Install locked dependencies:
|
|
108
|
+
npm ci
|
|
109
109
|
|
|
110
110
|
# Build all packages:
|
|
111
111
|
npm run build
|
|
@@ -114,8 +114,12 @@ npm run build
|
|
|
114
114
|
npm --prefix packages/pre820-mcp-server run build
|
|
115
115
|
|
|
116
116
|
# Run the built server:
|
|
117
|
-
node packages/pre820-mcp-server/dist/cli.js --eveapps /path/to/EveApps-repository
|
|
118
|
-
```
|
|
117
|
+
node packages/pre820-mcp-server/dist/cli.js --eveapps /path/to/EveApps-repository
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Use `npm ci` for fresh checkouts and CI builds. Commit the root `package-lock.json` to GitHub so contributors and CI use the same dependency versions. This monorepo shares one root lockfile; do not create a separate lockfile in this package.
|
|
121
|
+
|
|
122
|
+
To add or update this package's dependencies, run `npm install <dependency> --workspace @bridgetek/pre820-mcp-server` from the repository root. Commit the changed package manifest together with the root `package-lock.json`. Keep `node_modules/` ignored by Git.
|
|
119
123
|
|
|
120
124
|
## Publishing
|
|
121
125
|
|
|
@@ -149,11 +153,13 @@ npm --prefix packages/pre820-mcp-server link
|
|
|
149
153
|
|
|
150
154
|
### Build issues
|
|
151
155
|
|
|
152
|
-
Make sure dependencies are installed from the repository root:
|
|
153
|
-
|
|
154
|
-
```
|
|
155
|
-
npm
|
|
156
|
-
```
|
|
156
|
+
Make sure dependencies are installed from the repository root:
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
npm ci
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
If `npm ci` reports that the lockfile and package manifests are out of sync after an intentional dependency change, run `npm install` from the repository root and commit the updated manifests and root `package-lock.json`.
|
|
157
163
|
|
|
158
164
|
Then rebuild:
|
|
159
165
|
|
package/dist/server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bridgetek/pre820-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@modelcontextprotocol/sdk": "^1.17.1",
|
|
20
|
-
"@bridgetek/pre820-eveapps-core": "^1.0.
|
|
20
|
+
"@bridgetek/pre820-eveapps-core": "^1.0.1",
|
|
21
21
|
"zod": "^3.25.76"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|