Skip to content

Commit be04f8b

Browse files
committed
Fix npm publish warnings and bump to v1.0.1
1 parent 499d2ce commit be04f8b

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

.npmignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Development files
2+
.github/
3+
.git/
4+
.gitignore
5+
6+
# Config files
7+
eslint.config.js
8+
.eslintrc*
9+
10+
# Test files
11+
lib/test.js
12+
*.test.js
13+
*.spec.js
14+
15+
# Documentation (README is included by default)
16+
CHANGELOG.md
17+
CONTRIBUTING.md
18+
19+
# Editor files
20+
.vscode/
21+
.idea/
22+
*.swp
23+
*.swo
24+
*~
25+
26+
# OS files
27+
.DS_Store
28+
Thumbs.db
29+
30+
# Debug logs
31+
npm-debug.log*
32+
yarn-debug.log*
33+
yarn-error.log*

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"main": "lib/index.js",
66
"type": "module",
77
"bin": {
8-
"openclawdx": "./bin/openclawdx",
9-
"openclawdx-setup": "./bin/openclawdx"
8+
"openclawdx": "bin/openclawdx",
9+
"openclawdx-setup": "bin/openclawdx"
1010
},
1111
"scripts": {
1212
"test": "node lib/test.js",
@@ -27,7 +27,7 @@
2727
"license": "MIT",
2828
"repository": {
2929
"type": "git",
30-
"url": "https://github.com/mithun50/openclawd-termux"
30+
"url": "git+https://github.com/mithun50/openclawd-termux.git"
3131
},
3232
"homepage": "https://github.com/mithun50/openclawd-termux#readme",
3333
"bugs": {

0 commit comments

Comments
 (0)