-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated to wasm-pack 0.10.0 #21
Conversation
example/package.json
Outdated
@@ -7,7 +7,7 @@ | |||
"build": "rimraf dist/js && rollup --config" | |||
}, | |||
"devDependencies": { | |||
"@wasm-tool/rollup-plugin-rust": "^1.0.0", | |||
"@wasm-tool/rollup-plugin-rust": "file:..", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer for the example to be self-contained, so it will work even if the user copy-pastes it into their own project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Also note that if you want to test locally, you can use yarn link
to override @wasm-tool/rollup-plugin-rust
with the local version)
package.json
Outdated
@@ -2,7 +2,7 @@ | |||
"name": "@wasm-tool/rollup-plugin-rust", | |||
"author": "Pauan <[email protected]>", | |||
"description": "Rollup plugin for bundling and importing Rust crates.", | |||
"version": "1.0.6", | |||
"version": "1.0.7", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't bump the version, I do that right before releasing.
bc8532d
to
3ccb7ce
Compare
Thanks! |
@Pauan Would you be up to publish a new release to npmjs? |
@simlay Yeah, sorry for the delay, I need to update my npm first, since yarn isn't allowing me to publish. |
I published version 1.0.7. |
Resolves security issue from rustwasm/wasm-pack#958.
I tested this in the examples directory (and left the relative path file dependency).