Skip to content

Commit 3bfccee

Browse files
author
Eric Buess
committed
fix: npm publish warnings and script conflicts
- Fix repository.url format (add git+ prefix) - Separate prepublishOnly and prepack scripts to avoid conflicts - Remove deprecated husky shebang lines - prepublishOnly: runs clean, lint, and test - prepack: runs build (happens after prepublishOnly) - Bump version to 0.0.5
1 parent 2722610 commit 3bfccee

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npm run format:check || (npm run format && git add -A)
52
npx lint-staged

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "limitless-ai-mcp-server",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "MCP server for integrating Limitless AI Pendant recordings with AI assistants",
55
"author": "Eric Buess",
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/ericbuess/limitless-ai-mcp-server.git"
9+
"url": "git+https://github.com/ericbuess/limitless-ai-mcp-server.git"
1010
},
1111
"bugs": {
1212
"url": "https://github.com/ericbuess/limitless-ai-mcp-server/issues"
@@ -45,7 +45,7 @@
4545
"typecheck": "tsc --noEmit",
4646
"clean": "rm -rf dist coverage",
4747
"prepare": "husky install",
48-
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build && ls dist/index.js",
48+
"prepublishOnly": "npm run clean && npm run lint && npm run test",
4949
"prepack": "npm run build"
5050
},
5151
"dependencies": {

0 commit comments

Comments
 (0)