Skip to content

Commit 7cb0a2b

Browse files
committed
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.
1 parent a486903 commit 7cb0a2b

File tree

1 file changed

+0
-42
lines changed

1 file changed

+0
-42
lines changed

Gruntfile.js

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,6 @@ var
2424

2525
allI18nFiles = expandFiles( "ui/i18n/*.js" ),
2626

27-
cssFiles = [
28-
"core",
29-
"accordion",
30-
"autocomplete",
31-
"button",
32-
"datepicker",
33-
"dialog",
34-
"draggable",
35-
"menu",
36-
"progressbar",
37-
"resizable",
38-
"selectable",
39-
"selectmenu",
40-
"sortable",
41-
"slider",
42-
"spinner",
43-
"tabs",
44-
"tooltip",
45-
"theme"
46-
].map(function( component ) {
47-
return "themes/base/" + component + ".css";
48-
}),
49-
5027
// minified files
5128
minify = {
5229
options: {
@@ -149,25 +126,6 @@ grunt.initConfig({
149126
dist: "<%= pkg.name %>-<%= pkg.version %>"
150127
},
151128
compare_size: compareFiles,
152-
concat: {
153-
i18n: {
154-
options: {
155-
banner: createBanner( allI18nFiles )
156-
},
157-
src: allI18nFiles,
158-
dest: "dist/i18n/jquery-ui-i18n.js"
159-
},
160-
css: {
161-
options: {
162-
banner: createBanner( cssFiles ),
163-
stripBanners: {
164-
block: true
165-
}
166-
},
167-
src: cssFiles,
168-
dest: "dist/jquery-ui.css"
169-
}
170-
},
171129
requirejs: {
172130
js: {
173131
options: {

0 commit comments

Comments
 (0)