chore: 🧹 fix tools
This commit is contained in:
@ -13,7 +13,7 @@ const srcPath = resolve(cwd(), src);
|
||||
const distPath = resolve(cwd(), dist);
|
||||
const serverPath = resolve(
|
||||
cwd(),
|
||||
getArg('--sever', 'D:/users/lucas/Desktop/dev/server/gitea')
|
||||
getArg('--server', 'd:/gitea')
|
||||
);
|
||||
|
||||
logger.info('Deploy started!');
|
||||
|
@ -13,7 +13,7 @@ const srcPath = resolve(cwd(), src);
|
||||
const distPath = resolve(cwd(), dist);
|
||||
const serverPath = resolve(
|
||||
cwd(),
|
||||
getArg('--sever', 'd:/gitea')
|
||||
getArg('--server', 'd:/gitea')
|
||||
);
|
||||
const debouncer = new TaskDebouncer(300);
|
||||
const logger = new Logger('serve', 'info', 'brightMagenta');
|
||||
@ -37,4 +37,5 @@ watcher.on('change', (file) => debouncer.add(
|
||||
serverPath,
|
||||
serviceName,
|
||||
file,
|
||||
true
|
||||
));
|
||||
|
@ -11,15 +11,16 @@ const logger = new Logger('deploy', 'info', 'brightMagenta');
|
||||
|
||||
const sync = browsersync.create('lugit')
|
||||
|
||||
sync.init({
|
||||
proxy: 'http://lugit.local',
|
||||
port: 8080,
|
||||
})
|
||||
|
||||
|
||||
export async function deploy(srcPath, distPath, serverPath, serviceName, file = null) {
|
||||
export async function deploy(srcPath, distPath, serverPath, serviceName, file = null, live = false) {
|
||||
logger.info('Deploying...');
|
||||
|
||||
if(live && !sync.active) {
|
||||
sync.init({
|
||||
proxy: 'http://lugit.local',
|
||||
port: 8080,
|
||||
})
|
||||
}
|
||||
|
||||
let shouldRestart = true;
|
||||
|
||||
// check if it's an scss
|
||||
@ -34,7 +35,7 @@ export async function deploy(srcPath, distPath, serverPath, serviceName, file =
|
||||
await copyTo(distPath, serverPath);
|
||||
shouldRestart && await restartService(serviceName);
|
||||
|
||||
if(!shouldRestart) {
|
||||
if(!shouldRestart && live) {
|
||||
sync.reload();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user