-
Notifications
You must be signed in to change notification settings - Fork 323
chore: Migrated Vite to Rollup, Removed Vite related dependencies #6423
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
base: main
Are you sure you want to change the base?
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.
Thanks for handling this @yuhengshs! Have some questions on the configuration changes and there's some cleanup that can be addressed before merging. Curious how we are validating the compatibility of the new build artifacts against the existing artifacts?
07413ea
to
3763460
Compare
…cessive unnecessary sutff
3763460
to
029097a
Compare
a26b6c8
to
c23fceb
Compare
c23fceb
to
d4e5d95
Compare
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.
Called out some concerns in the comments and left some general questions/feedback
import AmplifyUIVue from '@aws-amplify/ui-vue'; | ||
import '@aws-amplify/ui-vue/styles.css'; | ||
|
||
createApp(App).use(router).mount('#app'); | ||
// Create app and register plugins | ||
const app = createApp(App); | ||
app.use(router); | ||
app.use(AmplifyUIVue); | ||
app.mount('#app'); |
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.
Do these changes equate to the build artifacts having a breaking change?
Description of changes
This PR serves the purpose of migrating from
Vite
toRollup
invue
packageIssue #, if available
Description of how you validated changes
Checklist
yarn test
passes and tests are updated/addeddocs
,e2e
,examples
, or other private packages.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.