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
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
83ea3fb
move from vue-cli-service/webpack to vite
phillipthelen Jan 23, 2025
65081e1
remove gulp-nodemon and update nodemon
phillipthelen Feb 3, 2025
e0717ca
eslint fixes
phillipthelen Feb 3, 2025
cf64ec9
fix various import issues
phillipthelen Feb 3, 2025
1eefb5d
use vitest for client spec tests
phillipthelen Feb 3, 2025
fe2bc74
fix import
phillipthelen Feb 3, 2025
d0875ba
fix lint
phillipthelen Feb 3, 2025
d7e953c
set serving url for vite content
phillipthelen Feb 3, 2025
34a59d2
setup nconf correctly for client build
phillipthelen Feb 4, 2025
2af27d6
fix setupNconf imports
phillipthelen Feb 4, 2025
e8ecc46
tell vite to ignore browser-script url
phillipthelen Feb 4, 2025
5176740
fix adding nconf to the client
phillipthelen Feb 4, 2025
af7b6e5
optimize vite dependency handling
phillipthelen Feb 4, 2025
29e3c61
fix axios version
phillipthelen Feb 4, 2025
db0ea4e
optimize image assets
phillipthelen Feb 5, 2025
520d380
fix merge
phillipthelen Feb 5, 2025
97c97c1
fix sinon import
phillipthelen Feb 11, 2025
e4159d0
remove word
phillipthelen Feb 11, 2025
73ade02
experimental S3 deploy for assets
phillipthelen Feb 18, 2025
c73af8c
fix setting aws url
phillipthelen Feb 18, 2025
b3688f8
improve css splitting for front page
phillipthelen Feb 19, 2025
76af432
compress resources
phillipthelen Feb 19, 2025
6283d1b
fix package json
phillipthelen Feb 19, 2025
db0556a
fix uploading compressed to s3
phillipthelen Feb 19, 2025
9a23806
correct s3 url
phillipthelen Feb 19, 2025
7bbbc03
build url differently
phillipthelen Feb 19, 2025
e157dee
fix
phillipthelen Feb 19, 2025
0b7b569
compress everything
phillipthelen Feb 19, 2025
f546781
fix logic for asset urls
phillipthelen Feb 20, 2025
1909080
compression change
phillipthelen Feb 20, 2025
f67ff18
attempt merging chunks
phillipthelen Feb 20, 2025
03b9240
lint fix
phillipthelen Feb 20, 2025
0291ecc
fix indentation
phillipthelen Mar 13, 2025
9c9481e
remove nodemon
phillipthelen Mar 13, 2025
5c9f902
remove old eslint disable
phillipthelen Mar 13, 2025
3ce5d3f
Revert "optimize image assets"
phillipthelen Mar 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
}
]
]
}
}
11 changes: 0 additions & 11 deletions gulp/gulp-start.js

This file was deleted.

6 changes: 0 additions & 6 deletions gulp/gulp-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,6 @@ function integrationTestCommand (testDir) {
}

/* Test task definitions */
gulp.task('test:nodemon', gulp.series(done => {
process.env.PORT = TEST_SERVER_PORT; // eslint-disable-line no-process-env
process.env.NODE_DB_URI = TEST_DB_URI; // eslint-disable-line no-process-env
done();
}, 'nodemon'));

gulp.task('test:prepare:mongo', cb => {
const mongooseOptions = getDefaultConnectionOptions();
const connectionUrl = getDevelopmentConnectionUrl(TEST_DB_URI);
Expand Down
1 change: 0 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ if (process.env.NODE_ENV === 'production') { // eslint-disable-line no-process-e
require('./gulp/gulp-build'); // eslint-disable-line global-require
require('./gulp/gulp-console'); // eslint-disable-line global-require
require('./gulp/gulp-sprites'); // eslint-disable-line global-require
require('./gulp/gulp-start'); // eslint-disable-line global-require
require('./gulp/gulp-tests'); // eslint-disable-line global-require
require('./gulp/gulp-transifex-test'); // eslint-disable-line global-require
require('gulp').task('default', gulp.series('test')); // eslint-disable-line global-require
Expand Down
2 changes: 1 addition & 1 deletion habitica-images
Submodule habitica-images updated 668 files
2 changes: 1 addition & 1 deletion migrations/archive/api_v3/groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let consoleStamp = require('console-stamp');
consoleStamp(console);

// Initialize configuration
require('../../website/server/libs/api-v3/setupNconf')();
require('../../website/server/libs/api-v3/setupNconf').default();

let MONGODB_OLD = nconf.get('MONGODB_OLD');
let MONGODB_NEW = nconf.get('MONGODB_NEW');
Expand Down
2 changes: 1 addition & 1 deletion migrations/archive/api_v3/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let moment = require('moment');
consoleStamp(console);

// Initialize configuration
require('../../website/server/libs/api-v3/setupNconf')();
require('../../website/server/libs/api-v3/setupNconf').default();

let MONGODB_OLD = nconf.get('MONGODB_OLD');
let MONGODB_NEW = nconf.get('MONGODB_NEW');
Expand Down
2 changes: 1 addition & 1 deletion migrations/migration-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require('@babel/register'); // eslint-disable-line import/no-extraneous-dependen
function setUpServer () {
const nconf = require('nconf'); // eslint-disable-line global-require, no-unused-vars
const mongoose = require('mongoose'); // eslint-disable-line global-require, no-unused-vars
const setupNconf = require('../website/server/libs/setupNconf'); // eslint-disable-line global-require
const setupNconf = require('../website/server/libs/setupNconf').default; // eslint-disable-line global-require

setupNconf();

Expand Down
Loading
Loading