diff options
author | eric <thul.eric@gmail.com> | 2015-11-07 15:06:39 -0500 |
---|---|---|
committer | eric <thul.eric@gmail.com> | 2015-11-07 15:06:39 -0500 |
commit | d18adcf960b5df464971e7c06366feeb0d173f1b (patch) | |
tree | 6821a4e1fb1f5ab0c54f4e8434e1c5c717890967 /docs/PursLoader | |
parent | 57585908acc300daa55b40156eeff7a065fe2832 (diff) | |
parent | 04eb392f345262e340717812e51a3ba810f7eaee (diff) | |
download | purs-loader-d18adcf960b5df464971e7c06366feeb0d173f1b.tar.gz purs-loader-d18adcf960b5df464971e7c06366feeb0d173f1b.tar.zst purs-loader-d18adcf960b5df464971e7c06366feeb0d173f1b.zip |
Merge pull request #30 from natefaubion/fix-paths
Fix paths
Diffstat (limited to 'docs/PursLoader')
-rw-r--r-- | docs/PursLoader/Loader.md | 2 | ||||
-rw-r--r-- | docs/PursLoader/Options.md | 19 |
2 files changed, 19 insertions, 2 deletions
diff --git a/docs/PursLoader/Loader.md b/docs/PursLoader/Loader.md index 8e91c4a..f81c486 100644 --- a/docs/PursLoader/Loader.md +++ b/docs/PursLoader/Loader.md | |||
@@ -3,7 +3,7 @@ | |||
3 | #### `Effects` | 3 | #### `Effects` |
4 | 4 | ||
5 | ``` purescript | 5 | ``` purescript |
6 | type Effects eff = (cp :: ChildProcess, fs :: FS, glob :: Glob, loader :: Loader | eff) | 6 | type Effects eff = (cp :: ChildProcess, fs :: FS, glob :: Glob, loader :: Loader, err :: EXCEPTION | eff) |
7 | ``` | 7 | ``` |
8 | 8 | ||
9 | #### `loader` | 9 | #### `loader` |
diff --git a/docs/PursLoader/Options.md b/docs/PursLoader/Options.md index d04b721..4202475 100644 --- a/docs/PursLoader/Options.md +++ b/docs/PursLoader/Options.md | |||
@@ -1,9 +1,26 @@ | |||
1 | ## Module PursLoader.Options | 1 | ## Module PursLoader.Options |
2 | 2 | ||
3 | #### `Options` | ||
4 | |||
5 | ``` purescript | ||
6 | newtype Options | ||
7 | ``` | ||
8 | |||
9 | ##### Instances | ||
10 | ``` purescript | ||
11 | instance isForeignOptions :: IsForeign Options | ||
12 | ``` | ||
13 | |||
14 | #### `output` | ||
15 | |||
16 | ``` purescript | ||
17 | output :: Options -> String | ||
18 | ``` | ||
19 | |||
3 | #### `pscOptions` | 20 | #### `pscOptions` |
4 | 21 | ||
5 | ``` purescript | 22 | ``` purescript |
6 | pscOptions :: Foreign -> Array String | 23 | pscOptions :: Options -> Array String |
7 | ``` | 24 | ``` |
8 | 25 | ||
9 | #### `loaderSrcOption` | 26 | #### `loaderSrcOption` |