Skip to content

Commit 4c692e6

Browse files
committed
Fixed compilation problems introduced by Bootstrap (now requires less >1.4).
Mentioned in #282.
1 parent aef256d commit 4c692e6

File tree

7 files changed

+535
-822
lines changed

7 files changed

+535
-822
lines changed

Gruntfile.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ module.exports = function(grunt) {
66
grunt.loadNpmTasks('grunt-contrib-concat');
77
grunt.loadNpmTasks('grunt-contrib-clean');
88
grunt.loadNpmTasks('grunt-contrib-copy');
9+
grunt.loadNpmTasks('grunt-contrib-less');
910
grunt.loadNpmTasks('grunt-replace');
10-
grunt.loadNpmTasks('grunt-recess');
1111

1212
grunt.registerTask('configure', [
1313
'clean:pre',
@@ -20,7 +20,7 @@ module.exports = function(grunt) {
2020
'concat:less_theme_dependencies',
2121
'concat:less_plugins',
2222
'concat:js',
23-
'recess',
23+
'less:uncompressed',
2424
'clean_bootstrap2_css',
2525
'replace',
2626
'build_standalone',
@@ -154,10 +154,8 @@ module.exports = function(grunt) {
154154
]
155155
}
156156
},
157-
recess: {
158-
options: {
159-
compile: true
160-
},
157+
less: {
158+
options: {},
161159
uncompressed: {
162160
files: {
163161
'dist/css/selectize.css': ['dist/less/selectize.less'],

0 commit comments

Comments
 (0)