-
Notifications
You must be signed in to change notification settings - Fork 112
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
Update wallet adapter vue #412
Conversation
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 use changeset (and not manual package version bump)
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "@aptos-labs/wallet-adapter-vue", | |||
"version": "0.2.0", | |||
"version": "0.2.1", |
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.
since we use changeset, we dont manually increase package versions, but use pnpm run changeset
to manage the upgrades
@@ -38,14 +43,15 @@ export default defineConfig({ | |||
input: { | |||
main: resolve(__dirname, "src/index.ts"), | |||
}, | |||
external: ["vue"], | |||
external: ["vue", "@aptos-labs/wallet-adapter-core"], |
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.
what does external
mean?
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.
According to documentation it excludes vue
itself and @aptos-labs/wallet-adapter-core
from bundle
# Conflicts: # pnpm-lock.yaml
@ildarH |
e5b04e5
to
cbf8165
Compare
Update
vite.config.ts
in the Vue adapter to reduce the bundle size. Also, bump the@aptos-labs/wallet-adapter-core
dependency version.