We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d20225 commit e2c6420Copy full SHA for e2c6420
lib_dev/README.md
@@ -0,0 +1,19 @@
1
+# Libraries for development
2
+
3
+This is a place for development purposes libraries.
4
5
+You can use modules here by `#dev/*`
6
7
+e.g. in `scripts` or `tests`:
8
9
+```js
10
+import { setup } from '#dev/process';
11
12
+const { execBuild } = setup(import.meta.url);
13
14
+// Execute ReScript in the current file location.
15
+await execBuild({ stdio: "inherit" });
16
+```
17
18
+> [!IMPORTANT]
19
+> DO NOT USE this modules in the compiler artifacts.
0 commit comments