mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
const out = 'assets'
|
|
|
|
import { exec } from 'child_process'
|
|
export function reload () {
|
|
return exec('reload.bat')
|
|
}
|
|
import gulp from 'gulp'
|
|
export function watch_reload () {
|
|
gulp.watch(`${out}/**`, reload)
|
|
}
|