mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +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)
|
|
}
|