dvm-video-thumbnails/development.mjs

9 lines
271 B
JavaScript
Raw Normal View History

2024-04-29 17:38:59 +00:00
import shell from "shelljs";
import "dotenv/config.js";
shell.exec("./node_modules/.bin/tsc");
shell.exec("./node_modules/.bin/tsc --watch", { silent: true, async: true });
shell.exec("./node_modules/.bin/nodemon --watch build -d 1 build/index.js", {
async: true,
});