You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jscomp/bsb/templates/basic-reason/README.md
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3,16 +3,25 @@
3
3
Hello! This project allows you to quickly get started with Reason and BuckleScript. If you wanted a more sophisticated version, try the `react` template (`bsb -theme react -init .`).
4
4
5
5
# Build
6
-
```
6
+
7
+
```bash
8
+
# for yarn
9
+
yarn build
10
+
11
+
# for npm
7
12
npm run build
8
13
```
9
14
10
15
# Build + Watch
11
16
12
-
```
17
+
```bash
18
+
# for yarn
19
+
yarn
20
+
21
+
# for npm
13
22
npm run start
14
23
```
15
24
16
-
17
25
# Editor
18
-
If you use `vscode`, Press `Windows + Shift + B` it will build automatically
26
+
27
+
If you're using VS Code, press <kbd>cmd</kbd> + <kbd>shift</kbd> + <kbd>B</kbd> or <kbd>Windows</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd> to build the project automatically.
0 commit comments