-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
base: develop
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.
gosh this is a lot of files! a handful of comments and questions inline.
.babelrc
Outdated
} |
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.
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
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.
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", |
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.
With nodemon ops removed from dev server start and test, do we still need nodemon at all?
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.
Removed it
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.
(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 |
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.
Does ESLint still gripe no-process-env
if we're using import.meta.env
instead?
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.
You're right, it shouldn't
website/client/vitest.config.js
Outdated
environment: "jsdom", | ||
}, | ||
browser: { | ||
enabled: true, |
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 is going on with the indents in here XD
gulp-nodemon
and callnode --watch
directlyuser-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.