diff --git a/shake-minify.cabal b/shake-minify.cabal
--- a/shake-minify.cabal
+++ b/shake-minify.cabal
@@ -1,5 +1,5 @@
 name:                shake-minify
-version:             0.1.3
+version:             0.1.4
 synopsis:            Shake Minify Rules
 description:         Shake rules to minify CSS and JS files. @shake-minify@
                      doesn't require any external tools to be on the @$PATH@ and uses
diff --git a/src/Development/Shake/Minify.hs b/src/Development/Shake/Minify.hs
--- a/src/Development/Shake/Minify.hs
+++ b/src/Development/Shake/Minify.hs
@@ -24,7 +24,7 @@
 -- | Given a @.min.js@ path, find the @.js@ file and minify it into the specified file name.
 minifyJs :: FilePath -- ^ Desired minified JS files (ex: @"//*.min.js"@)
          -> Action ()
-minifyJs = minifyCss' ((-<.> "js") . dropExtension)
+minifyJs = minifyJs' ((-<.> "js") . dropExtension)
 
 
 -- | Same as `minifyJs` except take a function for custom file path mapping.
