chore: 🧹 fix tools
This commit is contained in:
@ -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