aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-03 09:08:06 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-08 00:29:39 -0400
commit7cb0a2ba890e6a5c921d74e1c563b57359419311 (patch)
tree082be0146388985ef6ec37650ded21345e11b56c /Gruntfile.js
parenta4869031e0fc8607d99d50765a297fede409ff28 (diff)
downloadjquery-ui-7cb0a2ba890e6a5c921d74e1c563b57359419311.tar.gz
jquery-ui-7cb0a2ba890e6a5c921d74e1c563b57359419311.zip
Build: Remove grunt concat task its no longer used
This task was only used to create the combined js file for sizer and for creating the combined files for the NPM package. The npm package is no longer maintained so there is no need for this any more.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 3ee17462c..41961061b 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -24,29 +24,6 @@ var
allI18nFiles = expandFiles( "ui/i18n/*.js" ),
- cssFiles = [
- "core",
- "accordion",
- "autocomplete",
- "button",
- "datepicker",
- "dialog",
- "draggable",
- "menu",
- "progressbar",
- "resizable",
- "selectable",
- "selectmenu",
- "sortable",
- "slider",
- "spinner",
- "tabs",
- "tooltip",
- "theme"
- ].map(function( component ) {
- return "themes/base/" + component + ".css";
- }),
-
// minified files
minify = {
options: {
@@ -149,25 +126,6 @@ grunt.initConfig({
dist: "<%= pkg.name %>-<%= pkg.version %>"
},
compare_size: compareFiles,
- concat: {
- i18n: {
- options: {
- banner: createBanner( allI18nFiles )
- },
- src: allI18nFiles,
- dest: "dist/i18n/jquery-ui-i18n.js"
- },
- css: {
- options: {
- banner: createBanner( cssFiles ),
- stripBanners: {
- block: true
- }
- },
- src: cssFiles,
- dest: "dist/jquery-ui.css"
- }
- },
requirejs: {
js: {
options: {