]> git.immae.eu Git - github/fretlink/purs-loader.git/commitdiff
Updating bundle output option name
authoreric thul <thul.eric@gmail.com>
Sat, 26 Dec 2015 00:24:02 +0000 (19:24 -0500)
committereric thul <thul.eric@gmail.com>
Sat, 26 Dec 2015 00:24:02 +0000 (19:24 -0500)
README.md
src/PursLoader/Loader.purs
src/PursLoader/Options.purs

index a459059db1f9bbcf41eec373bfbeea66a21859a2..0e1ce2fc1b1b5529409ca588a80d73b9da890cc8 100644 (file)
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ npm install purs-loader --save-dev
 
 ## Options
 
-###### `pscBundle` (String)
+###### `bundleOutput` (String)
 
 Relative path to the bundled JavaScript file generated by the `PurescriptWebpackPlugin`. The default value is `output/bundle.js`.
 
index 0cd077d143d49ef712fd6c0f8d8f1b5e9300b7ca..affce53c729e838531e3af300db0e511f399b7d8 100644 (file)
@@ -54,7 +54,7 @@ loader ref source = do
 
       resourceDir = dirname (resourcePath ref)
 
-      modulePath = (\opts -> relative resourceDir opts.pscBundle) <$> options
+      modulePath = (\opts -> relative resourceDir opts.bundleOutput) <$> options
 
       result = (\path name -> "module.exports = require('" ++ path ++ "')['" ++ name ++ "'];") <$> modulePath <*> moduleName
 
index 132096c5d6ba73a5486ecc3706c46c49fac552b9..706ddd240b0bf74d0a837f515799c236b553745d 100644 (file)
@@ -11,20 +11,20 @@ import Data.Maybe (maybe)
 
 import PursLoader.Path (joinPath)
 
-newtype Options = Options { pscBundle :: String }
+newtype Options = Options { bundleOutput :: String }
 
-type Options_ = { pscBundle :: String }
+type Options_ = { bundleOutput :: String }
 
 runOptions :: Options -> Options_
 runOptions (Options options) = options
 
 instance isForeignOptions :: IsForeign Options where
   read obj =
-    Options <$> ({ pscBundle: _ }
-            <$> (maybe pscBundleDefault id <<< runNullOrUndefined <$> readProp pscBundle obj))
+    Options <$> ({ bundleOutput: _ }
+            <$> (maybe bundleOutputDefault id <<< runNullOrUndefined <$> readProp bundleOutput obj))
     where
-    pscBundle :: String
-    pscBundle = "pscBundle"
+    bundleOutput :: String
+    bundleOutput = "bundleOutput"
 
-    pscBundleDefault :: String
-    pscBundleDefault = joinPath "output" "bundle.js"
+    bundleOutputDefault :: String
+    bundleOutputDefault = joinPath "output" "bundle.js"