Skip to content
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

Migrate from vue-cli-service to vite #15389

Open
wants to merge 36 commits into
base: develop
Choose a base branch
from
Open

Conversation

phillipthelen
Copy link
Member

@phillipthelen phillipthelen commented Feb 5, 2025

  • Use vite instead of vue-cli-service and webpack
  • use vitest for testing
  • Remove gulp-nodemon and call node --watch directly
  • lazy load some modules (mostly the user-main module inmain.js, which allows Vite to code split better between logged out/logged in, improving load times for the front page and other static pages.
  • I ended up also running our image assets through a png optimizer to shrink them, since the transition to Vite ended up bringing some bundle size improvements as well and the png optimizing improves page load times even further 😅

Copy link
Member

@SabreCat SabreCat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gosh this is a lot of files! a handful of comments and questions inline.

.babelrc Outdated
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a weird file change -- it's not like it was neatened up for lint exactly, as there's still no newline at end of file or the like. What's this for?

habitica-images Outdated
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Likely to get outdated by the time this merges, and just as likely irrelevant to the project at hand

package.json Outdated
"mongoose": "^7.8.3",
"morgan": "^1.10.0",
"nconf": "^0.12.1",
"node-gcm": "^1.0.5",
"nodemon": "^2.0.20",
"nodemon": "^3.1.9",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With nodemon ops removed from dev server start and test, do we still need nodemon at all?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed it

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(no action needed) huh I wonder when the refresh on this rogues' gallery is coming, maybe that should be a team agenda topic 😅

@@ -858,12 +858,14 @@ import buyGemsModal from './payments/buyGemsModal.vue';
import reportBug from '@/mixins/reportBug.js';
import { worldStateMixin } from '@/mixins/worldState';

const DEBUG_ENABLED = process.env.DEBUG_ENABLED === 'true'; // eslint-disable-line no-process-env
const TIME_TRAVEL_ENABLED = process.env.TIME_TRAVEL_ENABLED === 'true'; // eslint-disable-line no-process-env
const DEBUG_ENABLED = import.meta.env.DEBUG_ENABLED === 'true'; // eslint-disable-line no-process-env
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does ESLint still gripe no-process-env if we're using import.meta.env instead?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right, it shouldn't

environment: "jsdom",
},
browser: {
enabled: true,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is going on with the indents in here XD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants