@mcpmake/core 0.2.1 → 0.2.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.
@@ -1,4 +1,8 @@
1
- FROM mcr.microsoft.com/playwright:v1.50.0-noble AS builder
1
+ # Keep this base-image tag IN LOCKSTEP with the "playwright" version in
2
+ # package.json.hbs (currently 1.59.1). Playwright requires the library version
3
+ # and the bundled browser binaries to match, or chromium.launch() fails at
4
+ # runtime ("browser not found"). Bump both together.
5
+ FROM mcr.microsoft.com/playwright:v1.59.1-noble AS builder
2
6
 
3
7
  WORKDIR /app
4
8
  COPY package.json package-lock.json ./
@@ -7,7 +11,7 @@ COPY tsconfig.json ./
7
11
  COPY src/ src/
8
12
  RUN npm run build
9
13
 
10
- FROM mcr.microsoft.com/playwright:v1.50.0-noble
14
+ FROM mcr.microsoft.com/playwright:v1.59.1-noble
11
15
 
12
16
  LABEL org.opencontainers.image.title="{{serverName}}"
13
17
  ENV NODE_ENV=production
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@modelcontextprotocol/sdk": "^1.12.0",
14
- "playwright": "^1.50.0",
14
+ "playwright": "1.59.1",
15
15
  "zod": "^3.24.0"
16
16
  },
17
17
  "devDependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpmake/core",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Shared generation library for mcpmake — parse APIs (OpenAPI/HAR/Postman/websites) and emit MCP servers.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",