Skip to content

Commit 7a211ed

Browse files
authored
Merge pull request #36 from shinpr/release/v0.5.3
Release v0.5.3
2 parents 5abb6f6 + 2696b1d commit 7a211ed

6 files changed

Lines changed: 26 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,7 @@ jobs:
4242
run: npm run build
4343

4444
- name: Run tests
45-
run: npm test
45+
run: npm test
46+
47+
- name: Check production dependencies
48+
run: npx report-missing-dependencies

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ output/
1717
# Config files
1818
.gitignore
1919
.madgerc
20+
.rmdrc.cjs
2021
.tsprunerc
2122
biome.json
2223
tsconfig.json

.rmdrc.cjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const builtinModules = require('module').builtinModules
2+
3+
// Include both 'fs' and 'node:fs' style imports
4+
const nodeBuiltins = [
5+
...builtinModules,
6+
...builtinModules.map((m) => `node:${m}`),
7+
]
8+
9+
module.exports = {
10+
src: 'src',
11+
ignoredDependencies: nodeBuiltins,
12+
testMatch: [
13+
'**/__tests__/**/*.?(m|c)[jt]s?(x)',
14+
'**/?(*.)+(spec|specs|test|tests).?(m|c)[jt]s?(x)',
15+
],
16+
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mcp-image",
33
"mcpName": "io.github.shinpr/mcp-image",
4-
"version": "0.5.2",
4+
"version": "0.5.3",
55
"description": "MCP server for AI image generation",
66
"main": "dist/index.js",
77
"bin": {

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"url": "https://github.com/shinpr/mcp-image",
99
"source": "github"
1010
},
11-
"version": "0.5.2",
11+
"version": "0.5.3",
1212
"packages": [
1313
{
1414
"registryType": "npm",
1515
"registryBaseUrl": "https://registry.npmjs.org",
1616
"identifier": "mcp-image",
17-
"version": "0.5.2",
17+
"version": "0.5.3",
1818
"transport": {
1919
"type": "stdio"
2020
},

0 commit comments

Comments
 (0)