We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac5f8b0 commit 5dc5074Copy full SHA for 5dc5074
cli/rescript-tools
@@ -0,0 +1,13 @@
1
+#!/usr/bin/env node
2
+//@ts-check
3
+"use strict";
4
+
5
+const path = require("path");
6
+const child_process = require("child_process");
7
8
+const { absolutePath: binAbsolutePath } = require("./bin_path");
9
+const rewatchExe = path.join(binAbsolutePath, "rescript-tools.exe");
10
11
+const args = process.argv.slice(2);
12
13
+child_process.spawnSync(rewatchExe, args, { stdio: "inherit" });
0 commit comments