We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 954f006 commit f56854fCopy full SHA for f56854f
templates/rescript-template-vite/vite.config.js
@@ -36,9 +36,9 @@ function rescript() {
36
},
37
buildStart: async function () {
38
if (command === "build") {
39
- logger.info(execSync("npx rescript").toString().trim());
+ logger.info(execSync("rescript").toString().trim());
40
} else {
41
- rescriptProcressRef = spawn("npx", ["rescript", "-w"]);
+ rescriptProcressRef = spawn("rescript", ["-w"]);
42
logger.info(`Spawned rescript -w`);
43
44
// Process standard output
0 commit comments