diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | index.js | 1 |
2 files changed, 0 insertions, 3 deletions
@@ -20,8 +20,6 @@ npm install purs-loader --save-dev | |||
20 | - Turn off optimizations which inline calls to >>= for the Eff monad. | 20 | - Turn off optimizations which inline calls to >>= for the Eff monad. |
21 | - **no-tco**: Boolean value that toggles `--no-tco` | 21 | - **no-tco**: Boolean value that toggles `--no-tco` |
22 | - Turn off tail-call elimination. | 22 | - Turn off tail-call elimination. |
23 | - **runtime-type-checks**: Boolean value that toggles `--runtime-type-checks` | ||
24 | - Generate simple runtime type checks for function arguments with simple types. | ||
25 | - **verbose-errors**: Boolean value that toggles `--verbose-errors` | 23 | - **verbose-errors**: Boolean value that toggles `--verbose-errors` |
26 | - Generate verbose error messages. | 24 | - Generate verbose error messages. |
27 | - **output**: String value that sets `--output=<string>` | 25 | - **output**: String value that sets `--output=<string>` |
@@ -13,7 +13,6 @@ var cp = require('child_process') | |||
13 | 'no-opts': '--no-opts', | 13 | 'no-opts': '--no-opts', |
14 | 'no-magic-do': '--no-magic-do', | 14 | 'no-magic-do': '--no-magic-do', |
15 | 'no-tco': '--no-tco', | 15 | 'no-tco': '--no-tco', |
16 | 'runtime-type-checks': '--runtime-type-checks', | ||
17 | 'verbose-errors': '--verbose-errors', | 16 | 'verbose-errors': '--verbose-errors', |
18 | 'output': '--output' | 17 | 'output': '--output' |
19 | } | 18 | } |