We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb0400 commit 0cf419dCopy full SHA for 0cf419d
rescript
@@ -183,7 +183,9 @@ Subcommands:
183
184
Run \`rescript <subcommand> -h\` for subcommand help. Examples:
185
rescript build -h
186
- rescript format -h`);
+ rescript format -h
187
+The default \`rescript\` is equivalent to \`rescript build\` subcommand
188
+`);
189
}
190
191
var maybe_subcommand = process_argv[2];
@@ -243,6 +245,13 @@ if (
243
245
bsc_exe
244
246
);
247
break;
248
+ case "dump":
249
+ require("./scripts/rescript_dump.js").main(
250
+ process.argv.slice(3),
251
+ rescript_exe,
252
+ bsc_exe
253
+ );
254
+ break;
255
case "convert":
256
// Todo
257
require("./scripts/rescript_convert.js").main(
0 commit comments