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
Fix parcel commands; prevent possible issues by using 'example.html'file
- Seems like using 'index.html' as both the source and output can screw things up sometimes. Normally, parcel would output things to 'dist/index.html' So, this is my workaround for it.
Copy file name to clipboardexpand all lines: 22-Projects/src/02-Random-Number/ReadMe.md
+22-6
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,9 @@ This folder will show how to build a "guess the random number" game. Here's an o
9
9
10
10
Run the following while in the `Projects/` folder.
11
11
12
-
The web-based games require a 2-step process of first running the `spago` command followed by the `parcel` command. The games can be opened and played via `dist/random-number/<FP structure approach>/index.html`.
12
+
The web-based games require a 2-step process of first running the `spago` command followed by the `parcel` command. The below `parcel` commands are rather verbose because of how this folder is structured. See the overview of the first instance of the command in the below compilation instructions.
13
+
14
+
The games can be opened and played via `dist/random-number/<FP structure approach>/index.html`.
13
15
14
16
### Standard
15
17
@@ -21,13 +23,27 @@ spago run -m Games.RandomNumber.Run.Standard.Infrastructure.Console
0 commit comments