fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.5 KiB
2.5 KiB
Changelog
🌌 0.2.0
This release focuses on filling out all commands and improving stderr/out handling for improved user experience!
✨ Features
pack
andpublish
- jamiebuilds, pull/67 You can now runwasm-pack pack
to generate a tarball of your generated package, as well as runwasm-pack publish
to publish your package to the npm registry. Both commands require that you have npm installed, and thepublish
command requires that you be logged in to the npm client. We're working on wrapping thenpm login
command so that you can also login directly fromwasm-pack
, see pull/100 for more details.
-
package.json
is pretty printed now - yoshuawuyts, pull/70Previously,
package.json
was not very human readable. Now it is pretty printed! -
collaborators
- yoshuawuyts, pull/70wasm-pack
now will fill out thecollaborators
field in yourpackage.json
for you based on yourCargo.toml
authors
data. For more discussion on how we decided on this v.s. other types ofauthor
fields inpackage.json
, see issues/2.
- Release binaries built with CI - ashleygwilliams, pull/103
🤕 Fixes
🛠️ Maintenance and 📖 Documentation
Thanks so much to mgattozzi, data-pup, sendilkumarn, Andy-Bell, steveklabnik, jasondavies, and edsrzf for all the awesome refactoring, documentation, typo-fixing, and testing work. We appreciate it so much!
💥 0.1.0
- First release!