@valbuild/mcp 0.123.0 → 0.123.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/LICENSE.md +7 -0
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @valbuild/mcp
2
2
 
3
+ ## 0.123.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`04b6d4c`](https://github.com/valbuild/val/commit/04b6d4cbbecc131bbaf3c20633af9dad8c857310), [`8e58c34`](https://github.com/valbuild/val/commit/8e58c3495d1bf0f221a57082cb0a3045929722a1)]:
8
+ - @valbuild/shared@0.123.2
9
+ - @valbuild/server@0.123.2
10
+
11
+ ## 0.123.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#625](https://github.com/valbuild/val/pull/625) [`468f147`](https://github.com/valbuild/val/commit/468f147e62d1a96585890208921341959f118b6d) Thanks [@freekh](https://github.com/freekh)! - Republish `@valbuild/mcp` with resolvable dependency versions.
16
+
17
+ `@valbuild/mcp@0.123.0` shipped its manifest with the workspace protocol intact —
18
+ `"@valbuild/core": "workspace:*"` and the same for `server` and `shared` — so it
19
+ cannot be installed. npm refuses it with
20
+ `EUNSUPPORTEDPROTOCOL: Unsupported URL Type "workspace:"`, and pnpm with
21
+ `ERR_PNPM_WORKSPACE_PKG_NOT_FOUND`. `@valbuild/next@0.123.0` depends on that exact
22
+ version, so it could not be installed either.
23
+
24
+ Both of those versions are deprecated. Use this one.
25
+
26
+ Nothing in the source was wrong: every package in the repository declares its
27
+ siblings as `workspace:*` and the publish step rewrites them to real versions.
28
+ That version was published by hand with `npm publish`, which uploads the manifest
29
+ verbatim — the rewrite is pnpm's, and only `pnpm publish` (which is what
30
+ `changeset publish` runs here) performs it.
31
+
3
32
  ## 0.123.0
4
33
 
5
34
  ### Minor Changes
package/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ Copyright (c) 2025 Fredrik Ekholdt and Blank AS
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -20,12 +20,7 @@
20
20
  "./package.json": "./package.json"
21
21
  },
22
22
  "types": "dist/valbuild-mcp.cjs.d.ts",
23
- "version": "0.123.0",
24
- "scripts": {
25
- "typecheck": "tsc --noEmit",
26
- "test": "jest",
27
- "test:watch": "jest --watch"
28
- },
23
+ "version": "0.123.2",
29
24
  "preconstruct": {
30
25
  "entrypoints": [
31
26
  "./index.ts",
@@ -34,11 +29,11 @@
34
29
  "exports": true
35
30
  },
36
31
  "dependencies": {
37
- "@valbuild/core": "workspace:*",
38
- "@valbuild/server": "workspace:*",
39
- "@valbuild/shared": "workspace:*",
40
32
  "minimatch": "^10.2.6",
41
- "zod": "^4.4.3"
33
+ "zod": "^4.4.3",
34
+ "@valbuild/core": "0.121.0",
35
+ "@valbuild/shared": "0.123.2",
36
+ "@valbuild/server": "0.123.2"
42
37
  },
43
38
  "devDependencies": {
44
39
  "@prettier/sync": "^0.6.1",
@@ -62,5 +57,10 @@
62
57
  "dist",
63
58
  "sharp/dist",
64
59
  "sharp/package.json"
65
- ]
66
- }
60
+ ],
61
+ "scripts": {
62
+ "typecheck": "tsc --noEmit",
63
+ "test": "jest",
64
+ "test:watch": "jest --watch"
65
+ }
66
+ }