Files
Yogstation/tgui/gulp/reload.js
2016-01-16 12:13:50 -06:00

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)
}