node-web-audio-api 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v0.9.0
2
+
3
+ - Update upstream crate to v0.30
4
+
1
5
  ## v0.8.0
2
6
 
3
7
  - Implement MediaDevices enumerateDeviaces and getUserMedia
package/README.md CHANGED
@@ -96,13 +96,15 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
96
96
  2. Install and build from github
97
97
 
98
98
  ```sh
99
- npm install --save git+https://github.com/ircam-ismm/node-web-audio-api.git
99
+ git clone https://github.com/ircam-ismm/node-web-audio-api.git node_modules/node-web-audio-api
100
100
  cd node_modules/node-web-audio-api
101
101
  npm install
102
102
  npm run build
103
103
  ```
104
104
 
105
- The package will be built on your machine, which might take some time
105
+ The package will be built on your machine, which might take some time.
106
+
107
+ Be aware that the package won't be listed on your `package.json` file, and that it won't be re-installed if running `npm install` again. A possible workaround would be to include the above in a postinstall script.
106
108
 
107
109
  ## Development notes
108
110
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-web-audio-api",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "author": "Benjamin Matuszewski",
5
5
  "description": "Node.js bindings for web-audio-api-rs using napi-rs",
6
6
  "exports": {