Skip to content

Commit b0fe432

Browse files
committed
add README to lib_dev
1 parent ac0e512 commit b0fe432

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

lib_dev/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)