@@ -42,7 +42,7 @@ Modules with **\[\<AutoOpen\>\]** does not require `open` to use.
42
42
43
43
- [ .NET SDK 6.0] ( https://dotnet.microsoft.com/download/dotnet/6.0 )
44
44
- [ Fable] ( https://fable.io/ ) is required to build this tool.
45
- - Run ` dotnet tool restore ` in the root directory of this repo to install them .
45
+ - Run ` dotnet tool restore ` in the root directory of this repo to install it .
46
46
47
47
- OCaml 4.08 or higher
48
48
- [ js_of_ocaml] ( https://github.com/ocsigen/js_of_ocaml ) should be installed to your opam switch.
@@ -54,13 +54,13 @@ Modules with **\[\<AutoOpen\>\]** does not require `open` to use.
54
54
55
55
## Debugging
56
56
57
- ` dotnet run -t Watch ` to live update ` dist/ts2ocaml.js ` .
57
+ ` ./fake watch ` to live update ` dist/ts2ocaml.js ` .
58
58
59
59
It will be bundled by Webpack with the ` development ` mode.
60
60
61
61
## Building
62
62
63
- ` dotnet run -t Build ` performs the followings:
63
+ ` ./fake build ` performs the followings:
64
64
- ` yarn install ` to populate ` node_modules `
65
65
- ` dotnet restore ts2ocaml.sln ` to install required F# libraries
66
66
- Compile F# source files into JS source files (through Fable)
@@ -70,7 +70,7 @@ The resulting `dist/ts2ocaml.js` is then ready to run through `node`.
70
70
71
71
## Testing
72
72
73
- ` dotnet run -t Test ` builds the tool and then performs the followings:
73
+ ` ./fake test ` builds the tool and then performs the followings:
74
74
75
75
### Test the tool for [ ` js_of_ocaml ` target] ( js_of_ocaml.md )
76
76
@@ -92,7 +92,7 @@ The resulting `dist/ts2ocaml.js` is then ready to run through `node`.
92
92
93
93
## Publishing
94
94
95
- ` dotnet run -t Publish ` builds the tool, runs the tests, and then performs the followings:
95
+ ` ./fake publish ` builds the tool, runs the tests, and then performs the followings:
96
96
97
97
### Prepare for publishing the standard library for [ ` js_of_ocaml ` target] ( js_of_ocaml.md ) to the ` jsoo-stdlib ` branch
98
98
0 commit comments