Skip to content

Commit 11113ec

Browse files
committed
Fix
1 parent 78c4c27 commit 11113ec

4 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ jobs:
2929
- name: Bundle AXe artifacts
3030
run: npm run bundle:axe
3131

32-
- name: Build (tsup)
33-
run: npm run build:tsup
34-
3532
- name: Build (Smithery)
3633
run: npm run build
3734

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ jobs:
4848
- name: Bundle AXe artifacts
4949
run: npm run bundle:axe
5050

51-
- name: Build TypeScript (tsup)
52-
run: npm run build:tsup
53-
5451
- name: Build Smithery bundle
5552
run: npm run build
5653

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
"macOSTemplateVersion": "v1.0.5",
77
"main": "build/index.js",
88
"type": "module",
9-
"module": "src/smithery.ts",
9+
"module": "build/index.js",
1010
"bin": {
1111
"xcodebuildmcp": "build/index.js",
1212
"xcodebuildmcp-doctor": "build/doctor-cli.js"
1313
},
1414
"scripts": {
15-
"build": "npm run generate:version && npm run generate:loaders && npx smithery build",
15+
"build": "npm run build:tsup && npm run build:smithery",
16+
"build:smithery": "npx smithery build src/smithery.ts",
1617
"dev": "npm run generate:version && npm run generate:loaders && npx smithery dev",
1718
"build:tsup": "npm run generate:version && npm run generate:loaders && tsup",
1819
"dev:tsup": "npm run build:tsup && tsup --watch",

tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ export default defineConfig({
3434
chmodSync('build/doctor-cli.js', '755');
3535
}
3636
},
37-
});
37+
});

0 commit comments

Comments
 (0)