aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2013-10-02 00:39:49 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2013-10-02 00:40:29 +0200
commit11f386fe89b7b6b86e6c87e5bb22cc34535138b9 (patch)
tree148bc464e6fa9bd5ff137447ba42f20f09d8d91d /Gruntfile.js
parent908d88cc70a2328524c3dee8e2956069a16d048a (diff)
downloadjquery-11f386fe89b7b6b86e6c87e5bb22cc34535138b9.tar.gz
jquery-11f386fe89b7b6b86e6c87e5bb22cc34535138b9.zip
No ticket. Simplify the post-uglify task. (cherry-picked from 923bfc80dbba00659a2fbadafad6d894973cc560)
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index a4215b558..4be86f296 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -121,12 +121,9 @@ module.exports = function( grunt ) {
},
"post-uglify": {
all: {
- files: {
- "dist/jquery.min.map.tmp": [ "dist/jquery.min.map" ],
- "dist/jquery.min.js.tmp": [ "dist/jquery.min.js" ]
- },
+ src: [ "dist/jquery.min.map" ],
options: {
- tempFiles: [ "dist/jquery.min.map.tmp", "dist/jquery.min.js.tmp", "dist/jquery.pre-min.js" ]
+ tempFiles: [ "dist/jquery.pre-min.js" ]
}
}
}