Skip to content

Commit e71c6ef

Browse files
authored
Merge pull request #16 from nearai/fix-cli
Fix cli
2 parents 0d1202a + 6a4d913 commit e71c6ef

3 files changed

Lines changed: 64 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @nearai/near-mcp
22

3+
## 0.0.29
4+
5+
### Patch Changes
6+
7+
- make build executable
8+
39
## 0.0.28
410

511
### Patch Changes

bun.lock

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

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nearai/near-mcp",
3-
"version": "0.0.28",
3+
"version": "0.0.29",
44
"description": "MCP server for interacting with Near Blockchain",
55
"homepage": "https://github.com/near-ai/near-mcp",
66
"repository": {
@@ -13,7 +13,7 @@
1313
"lint": "eslint . --ext .ts,.tsx",
1414
"lint:fix": "eslint . --ext .ts,.tsx --fix",
1515
"typecheck": "tsc --noEmit",
16-
"build": "rm -rf dist/* && tsc --outDir dist",
16+
"build": "rm -rf dist/* && tsc --outDir dist && shx chmod +x dist/**/*.js bin/*.js",
1717
"cli": "bin/near-mcp.js"
1818
},
1919
"keywords": [],
@@ -60,6 +60,7 @@
6060
"eslint-config-prettier": "^9.1.0",
6161
"eslint-plugin-simple-import-sort": "^10.0.0",
6262
"prettier": "^3.4.2",
63+
"shx": "^0.4.0",
6364
"typescript": "^5.7.2"
6465
},
6566
"dependencies": {

0 commit comments

Comments
 (0)