Skip to content

Commit

Permalink
[publish binary] fix npm install
Browse files Browse the repository at this point in the history
The problem is, during npm install,
binary was downloaded from
GitHub releases but the process does not update the local copy of it.
  • Loading branch information
cedrickchee committed Feb 11, 2020
1 parent 2089425 commit bbdfe36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Empty file added native/.keep
Empty file.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rnnoise",
"version": "0.1.4",
"version": "0.1.5",
"description": "Node.js bindings to Xiph's RNNoise denoising C library",
"keywords": [
"audio",
Expand All @@ -12,7 +12,7 @@
"rnn"
],
"main": "lib/index.js",
"homepage": "https://github.com/cedrickchee/rnnoise-nodejs",
"homepage": "https://github.com/cedrickchee/rnnoise-nodejs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cedrickchee/rnnoise-nodejs.git"
Expand All @@ -34,7 +34,7 @@
},
"files": [
"lib/",
"native/index.node",
"native/.keep",
"README.md",
"LICENSE"
],
Expand All @@ -46,7 +46,7 @@
"host": "https://github.com/cedrickchee/rnnoise-nodejs/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native",
"module_path": "./native/",
"pkg_path": "."
}
}

0 comments on commit bbdfe36

Please sign in to comment.