dvm-video-thumbnails/development.mjs
2024-04-29 19:38:59 +02:00

9 lines
271 B
JavaScript

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