-
Notifications
You must be signed in to change notification settings - Fork 1
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
Move hyperdrive-wasm into repo #1026
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Ignored Deployment
|
This PR moves the rust crate for building
@delvtech/hyperdrive-wasm
into the repo to live close to the code that uses it.To ensure the rust crate's
Cargo.toml
remains the single source of truth for the package manifest info, including it's version, the actual built wasm package has been gitignored. Then, to ensure that packages in the monorepo use the local build of@delvtech/hyperdrive-wasm
instead of installing it from NPM, apreinstall
hook has been added that will build the package from source if it doesn't already exist before installing dependencies.This also means that the package has a different release flow then the typical
yarn changeset
. The release guidance in the README has been updated to reflect this.Related to delvtech/hyperdrive-bindings#103