Created
March 14, 2013 18:20
-
-
Save rxaviers/5163826 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/grunt.js b/grunt.js | |
| index d599496..18fd2c6 100644 | |
| --- a/grunt.js | |
| +++ b/grunt.js | |
| @@ -209,9 +209,7 @@ grunt.initConfig({ | |
| "dist/jquery-ui.js": "jquery-ui.js", | |
| "dist/jquery-ui.min.js": "jquery-ui.min.js", | |
| "dist/i18n/jquery-ui-i18n.js": "i18n/jquery-ui-i18n.js", | |
| - "dist/i18n/jquery-ui-i18n.min.js": "i18n/jquery-ui-i18n.min.js", | |
| - "dist/jquery-ui.css": "themes/base/jquery-ui.css", | |
| - "dist/jquery-ui.min.css": "themes/base/minified/jquery-ui.min.css" | |
| + "dist/i18n/jquery-ui-i18n.min.js": "i18n/jquery-ui-i18n.min.js" | |
| }, | |
| dest: "dist/<%= files.cdn %>" | |
| }, | |
| @@ -230,11 +228,6 @@ grunt.initConfig({ | |
| strip: /^dist\/minified/, | |
| dest: "dist/<%= files.cdn %>/ui" | |
| }, | |
| - cdn_min_images: { | |
| - src: "themes/base/images/*", | |
| - strip: /^themes\/base\//, | |
| - dest: "dist/<%= files.cdn %>/themes/base/minified" | |
| - }, | |
| cdn_themes: { | |
| src: "dist/<%= files.themes %>/themes/**/*", | |
| strip: "dist/<%= files.themes %>", | |
| @@ -340,6 +333,6 @@ grunt.registerTask( "sizer_all", "concat:ui min compare_size" ); | |
| grunt.registerTask( "build", "concat min cssmin copy:dist_units_images" ); | |
| grunt.registerTask( "release", "clean build copy:dist copy:dist_min copy:dist_min_images copy:dist_css_min md5:dist zip:dist" ); | |
| grunt.registerTask( "release_themes", "release generate_themes copy:themes md5:themes zip:themes" ); | |
| -grunt.registerTask( "release_cdn", "release_themes copy:cdn copy:cdn_min copy:cdn_i18n copy:cdn_i18n_min copy:cdn_min_images copy:cdn_themes md5:cdn zip:cdn" ); | |
| +grunt.registerTask( "release_cdn", "release_themes copy:cdn copy:cdn_min copy:cdn_i18n copy:cdn_i18n_min copy:cdn_themes md5:cdn zip:cdn" ); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment