Skip to content

Commit f98c11b

Browse files
fix: update DXT building documentation to use correct npm script names
- Change dxt:build → mcpb:build - Change dxt:pack → mcpb:pack - Update test error message for correct script name
1 parent caee606 commit f98c11b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

helpscout-mcp-extension/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ From the project root directory:
1717

1818
```bash
1919
# Build the DXT extension
20-
npm run dxt:build
20+
npm run mcpb:build
2121

2222
# Build and pack the DXT file
23-
npm run dxt:pack
23+
npm run mcpb:pack
2424
```
2525

2626
This will:
@@ -56,6 +56,6 @@ The build process:
5656

5757
To test locally before publishing:
5858
```bash
59-
npm run dxt:pack
59+
npm run mcpb:pack
6060
# Install the generated .dxt file in Claude Desktop
6161
```

src/__tests__/dxt-validation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('DXT Extension Validation', () => {
1111
beforeAll(() => {
1212
// Ensure DXT is built before running tests
1313
if (!fs.existsSync(buildDir)) {
14-
throw new Error('DXT build directory not found. Run `npm run dxt:build` first.');
14+
throw new Error('DXT build directory not found. Run `npm run mcpb:build` first.');
1515
}
1616

1717
if (!fs.existsSync(manifestPath)) {

0 commit comments

Comments
 (0)