Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix css builds
  • Loading branch information
Eric Miller committed Dec 17, 2020
commit a77199c2979ea62a24fd72ae281685fbfc7c9dd2
24 changes: 3 additions & 21 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,7 @@ module.exports = function (grunt) {
allI18nFiles = expandFiles("ui/i18n/*.js"),

cssFiles = [
"core",
"accordion",
"autocomplete",
"button",
"checkboxradio",
"controlgroup",
"datepicker",
"dialog",
"draggable",
"menu",
"progressbar",
"resizable",
"selectable",
"selectmenu",
"sortable",
"slider",
"spinner",
"tabs",
"tooltip",
"base",
"theme"
].map(function (component) {
return "themes/base/" + component + ".css";
Expand Down Expand Up @@ -310,10 +292,10 @@ module.exports = function (grunt) {

grunt.registerTask("default", ["requirejs", "test", "build"]);

grunt.registerTask("jenkins", ["default", "concat"]);
grunt.registerTask("jenkins", ["default"]);
grunt.registerTask("lint", ["asciilint", "jshint", "jscs", "csslint", "htmllint"]);
grunt.registerTask("test", ["qunit"]);
grunt.registerTask("build", ["sass"]);
grunt.registerTask("build", ["sass", "concat","minify"]);
grunt.registerTask("sizer", ["requirejs:js", "uglify:main", "compare_size:all"]);
grunt.registerTask("sizer_all", ["requirejs:js", "uglify", "compare_size"]);

Expand Down