Skip to content

Commit

Permalink
Update Rebel example after rebel/71
Browse files Browse the repository at this point in the history
reasonml-old/rebel#71 breaks the current example
repo requiring two small tweaks:

- `src/Test.re` needs to be renamed to the default target `src/Index.re`
- with multiple targets, we need to execute `app.native` instead of
  `app.out`
  • Loading branch information
jmorrell committed Oct 15, 2016
1 parent 4c5e42e commit 45add98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
],
"scripts": {
"postinstall": "npm run build",
"test": "_build/default/src/app.out",
"start": "_build/default/src/app.out",
"test": "_build/default/src/app.native",
"start": "_build/default/src/app.native",
"build": "eval $(dependencyEnv) && nopam && rebel",
"top": "eval $(dependencyEnv) && rtop",
"env": "eval $(dependencyEnv) && env",
Expand Down
File renamed without changes.

0 comments on commit 45add98

Please sign in to comment.