Skip to content

Commit bbdfe36

Browse files
committed
[publish binary] fix npm install
The problem is, during npm install, binary was downloaded from GitHub releases but the process does not update the local copy of it.
1 parent 2089425 commit bbdfe36

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

native/.keep

Whitespace-only changes.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rnnoise",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Node.js bindings to Xiph's RNNoise denoising C library",
55
"keywords": [
66
"audio",
@@ -12,7 +12,7 @@
1212
"rnn"
1313
],
1414
"main": "lib/index.js",
15-
"homepage": "https://github.com/cedrickchee/rnnoise-nodejs",
15+
"homepage": "https://github.com/cedrickchee/rnnoise-nodejs#readme",
1616
"repository": {
1717
"type": "git",
1818
"url": "git+https://github.com/cedrickchee/rnnoise-nodejs.git"
@@ -34,7 +34,7 @@
3434
},
3535
"files": [
3636
"lib/",
37-
"native/index.node",
37+
"native/.keep",
3838
"README.md",
3939
"LICENSE"
4040
],
@@ -46,7 +46,7 @@
4646
"host": "https://github.com/cedrickchee/rnnoise-nodejs/releases/download/",
4747
"remote_path": "{version}",
4848
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
49-
"module_path": "./native",
49+
"module_path": "./native/",
5050
"pkg_path": "."
5151
}
5252
}

0 commit comments

Comments
 (0)