mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-03-21 17:24:37 -05:00
The biggest changes here include splitting the server-side JS into multiple directories (under /src/app), moving all web content to /src/web, and compiling the web app to /dist instead of /public. This layout makes more sense overall, and more closely mirrors what is used for vue-cli v3 projects.
10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
require('../common/bootstrap');
|
|
|
|
module.exports = {
|
|
updateGear: require('./updateGear'),
|
|
getSplatNetLanguageFiles: require('./getSplatNetLanguageFiles'),
|
|
copyTranslation: require('./copyTranslation'),
|
|
};
|
|
|
|
require('make-runnable/custom')({ printOutputFrame: false });
|