Files
Tiber365/node_modules/lottie-web/tasks/watch.js
2025-05-16 00:17:42 +02:00

34 lines
1.0 KiB
JavaScript

var childProcess = require('child_process');
var watch = require('watch')
function runScript(scriptPath, processArguments, callback) {
// keep track of whether callback has been invoked to prevent multiple invocations
var invoked = false;
var process = childProcess.fork(scriptPath, processArguments);
// listen for errors as they may prevent the exit event from firing
process.on('error', function (err) {
if (invoked) return;
invoked = true;
callback(err);
});
// execute the callback once the process has finished running
process.on('exit', function (code) {
if (invoked) return;
invoked = true;
var err = code === 0 ? null : new Error('exit code ' + code);
callback(err);
});
}
watch.watchTree(`${__dirname}\\..\\player\\js\\`, function (f, curr, prev) {
runScript(`${__dirname}\\build.js`, ["reduced"], function (err) {
if (err) throw err;
console.log('finished running some-script.js');
});
})