foalts2-cli
Version:
CLI tool for FoalTS
39 lines (38 loc) • 1.55 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.connectVue = void 0;
const path_1 = require("path");
const safe_1 = require("colors/safe");
const file_system_1 = require("../../file-system");
function connectVue(path) {
const fs = new file_system_1.FileSystem();
if (!fs.exists(path)) {
if (process.env.P1Z7kEbSUUPMxF8GqPwD8Gx_FOAL_CLI_TEST !== 'true') {
console.log(safe_1.red(` The directory ${path} does not exist.`));
}
return;
}
if (!fs.exists(path_1.join(path, 'package.json'))) {
if (process.env.P1Z7kEbSUUPMxF8GqPwD8Gx_FOAL_CLI_TEST !== 'true') {
console.log(safe_1.red(` The directory ${path} is not a Vue project (missing package.json).`));
}
return;
}
fs
.cd(path)
.modify('package.json', content => {
const pkg = JSON.parse(content);
pkg.vue = pkg.vue || {};
// Proxy configuration
pkg.vue.devServer = pkg.vue.devServer || {};
pkg.vue.devServer.proxy = pkg.vue.devServer.proxy || {};
pkg.vue.devServer.proxy['^/api'] = { target: 'http://localhost:3001' };
// Output build directory
const outputPath = path_1.join(path_1.relative(path, process.cwd()), 'public')
// Make projects generated on Windows build on Unix.
.replace(/\\/g, '/');
pkg.vue.outputDir = outputPath;
return JSON.stringify(pkg, null, 2);
});
}
exports.connectVue = connectVue;