]> source.dussan.org Git - jquery-ui.git/commitdiff
Build: Don't use .min.js extension for individual source files
authorScott González <scott.gonzalez@gmail.com>
Wed, 4 Mar 2015 17:45:29 +0000 (12:45 -0500)
committerScott González <scott.gonzalez@gmail.com>
Thu, 5 Mar 2015 14:11:53 +0000 (09:11 -0500)
We don't actually use these files for anything other than size comparisons,
but having the .min.js extension means that AMD is broken.

Note: If you're using AMD with the minified files, just run a build instead.

Fixes #10674
Closes gh-1466

Gruntfile.js

index 69517d77884cba4f3570a011a3a8005df3a2485e..3e66e2e37d39d13a4573687eafd8331e5aaf5536 100644 (file)
@@ -79,7 +79,7 @@ var
        component = grunt.option( "component" ) || "**";
 
 function mapMinFile( file ) {
-       return "dist/" + file.replace( /\.js$/, ".min.js" ).replace( /ui\//, "minified/" );
+       return "dist/" + file.replace( /ui\//, "minified/" );
 }
 
 function expandFiles( files ) {