diff options
author | eric thul <thul.eric@gmail.com> | 2015-12-25 18:41:33 -0500 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2015-12-25 18:41:33 -0500 |
commit | 63d6a244462d050e119bde54a7063bae8a17e987 (patch) | |
tree | cce47ed541fa9ee8b2950945a89608b1c06fb8c9 /docs/PursLoader/Options.md | |
parent | 2e2da2be94720a739c595ec179a7ed49480ce753 (diff) | |
download | purs-loader-63d6a244462d050e119bde54a7063bae8a17e987.tar.gz purs-loader-63d6a244462d050e119bde54a7063bae8a17e987.tar.zst purs-loader-63d6a244462d050e119bde54a7063bae8a17e987.zip |
Splitting PSC functionality into a separate plugin
The loader creates shim modules that reference their corresponding
PureScript module that is bundled by the PureScript webpack plugin,
which invokes `psc` and `psc-bundle`.
Resolves #31 and resolves #32
Diffstat (limited to 'docs/PursLoader/Options.md')
-rw-r--r-- | docs/PursLoader/Options.md | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/docs/PursLoader/Options.md b/docs/PursLoader/Options.md index 4202475..2bfcddd 100644 --- a/docs/PursLoader/Options.md +++ b/docs/PursLoader/Options.md | |||
@@ -8,31 +8,13 @@ newtype Options | |||
8 | 8 | ||
9 | ##### Instances | 9 | ##### Instances |
10 | ``` purescript | 10 | ``` purescript |
11 | instance isForeignOptions :: IsForeign Options | 11 | IsForeign Options |
12 | ``` | 12 | ``` |
13 | 13 | ||
14 | #### `output` | 14 | #### `runOptions` |
15 | 15 | ||
16 | ``` purescript | 16 | ``` purescript |
17 | output :: Options -> String | 17 | runOptions :: Options -> Options_ |
18 | ``` | ||
19 | |||
20 | #### `pscOptions` | ||
21 | |||
22 | ``` purescript | ||
23 | pscOptions :: Options -> Array String | ||
24 | ``` | ||
25 | |||
26 | #### `loaderSrcOption` | ||
27 | |||
28 | ``` purescript | ||
29 | loaderSrcOption :: Foreign -> Maybe (Array String) | ||
30 | ``` | ||
31 | |||
32 | #### `loaderFFIOption` | ||
33 | |||
34 | ``` purescript | ||
35 | loaderFFIOption :: Foreign -> Maybe (Array String) | ||
36 | ``` | 18 | ``` |
37 | 19 | ||
38 | 20 | ||