]> git.immae.eu Git - github/fretlink/purs-loader.git/commitdiff
Compiling after adding webpack dependencies
authoreric thul <thul.eric@gmail.com>
Wed, 12 Aug 2015 03:19:16 +0000 (23:19 -0400)
committereric thul <thul.eric@gmail.com>
Wed, 12 Aug 2015 03:19:16 +0000 (23:19 -0400)
Resolves #28

src/PursLoader/Loader.purs

index 3cb99cd47cd258e7aa155ef23d7ff051f8a091be..b5795771134f0d2722c0607ea70c986a1c008fe6 100644 (file)
@@ -68,8 +68,6 @@ loader' ref source = do
       ffis = fromMaybe [] (loaderFFIOption parsed)
       opts = pscOptions parsed
 
-  spawn pscCommand (srcs <> opts)
-
   srcss <- globAll srcs
   ffiss <- globAll ffis
 
@@ -91,6 +89,8 @@ loader' ref source = do
 
   fromMaybe (pure unit) ((\path -> liftEff (addDependency ref path)) <$> foreignPath)
 
+  spawn pscCommand (srcs <> opts)
+
   return result
 
 loader :: forall eff. LoaderRef -> String -> Eff (Effects eff) Unit