aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoreric thul <thul.eric@gmail.com>2015-12-25 19:24:02 -0500
committereric thul <thul.eric@gmail.com>2015-12-25 19:24:02 -0500
commitd78112147d02e263a5b000cb0b3b9ff84aa5c89a (patch)
tree108fbfe1442e5c7ef42a33dfde0655fa378d3fdc
parent9764d2a7d5e6d9cf081dcbc162dac01f95d452b3 (diff)
downloadpurs-loader-d78112147d02e263a5b000cb0b3b9ff84aa5c89a.tar.gz
purs-loader-d78112147d02e263a5b000cb0b3b9ff84aa5c89a.tar.zst
purs-loader-d78112147d02e263a5b000cb0b3b9ff84aa5c89a.zip
Updating bundle output option name
-rw-r--r--README.md2
-rw-r--r--src/PursLoader/Loader.purs2
-rw-r--r--src/PursLoader/Options.purs16
3 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index a459059..0e1ce2f 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ npm install purs-loader --save-dev
14 14
15## Options 15## Options
16 16
17###### `pscBundle` (String) 17###### `bundleOutput` (String)
18 18
19Relative path to the bundled JavaScript file generated by the `PurescriptWebpackPlugin`. The default value is `output/bundle.js`. 19Relative path to the bundled JavaScript file generated by the `PurescriptWebpackPlugin`. The default value is `output/bundle.js`.
20 20
diff --git a/src/PursLoader/Loader.purs b/src/PursLoader/Loader.purs
index 0cd077d..affce53 100644
--- a/src/PursLoader/Loader.purs
+++ b/src/PursLoader/Loader.purs
@@ -54,7 +54,7 @@ loader ref source = do
54 54
55 resourceDir = dirname (resourcePath ref) 55 resourceDir = dirname (resourcePath ref)
56 56
57 modulePath = (\opts -> relative resourceDir opts.pscBundle) <$> options 57 modulePath = (\opts -> relative resourceDir opts.bundleOutput) <$> options
58 58
59 result = (\path name -> "module.exports = require('" ++ path ++ "')['" ++ name ++ "'];") <$> modulePath <*> moduleName 59 result = (\path name -> "module.exports = require('" ++ path ++ "')['" ++ name ++ "'];") <$> modulePath <*> moduleName
60 60
diff --git a/src/PursLoader/Options.purs b/src/PursLoader/Options.purs
index 132096c..706ddd2 100644
--- a/src/PursLoader/Options.purs
+++ b/src/PursLoader/Options.purs
@@ -11,20 +11,20 @@ import Data.Maybe (maybe)
11 11
12import PursLoader.Path (joinPath) 12import PursLoader.Path (joinPath)
13 13
14newtype Options = Options { pscBundle :: String } 14newtype Options = Options { bundleOutput :: String }
15 15
16type Options_ = { pscBundle :: String } 16type Options_ = { bundleOutput :: String }
17 17
18runOptions :: Options -> Options_ 18runOptions :: Options -> Options_
19runOptions (Options options) = options 19runOptions (Options options) = options
20 20
21instance isForeignOptions :: IsForeign Options where 21instance isForeignOptions :: IsForeign Options where
22 read obj = 22 read obj =
23 Options <$> ({ pscBundle: _ } 23 Options <$> ({ bundleOutput: _ }
24 <$> (maybe pscBundleDefault id <<< runNullOrUndefined <$> readProp pscBundle obj)) 24 <$> (maybe bundleOutputDefault id <<< runNullOrUndefined <$> readProp bundleOutput obj))
25 where 25 where
26 pscBundle :: String 26 bundleOutput :: String
27 pscBundle = "pscBundle" 27 bundleOutput = "bundleOutput"
28 28
29 pscBundleDefault :: String 29 bundleOutputDefault :: String
30 pscBundleDefault = joinPath "output" "bundle.js" 30 bundleOutputDefault = joinPath "output" "bundle.js"