Skip to content

Commit ff5a3dc

Browse files
committed
removed ruby dependency.
1 parent 131c006 commit ff5a3dc

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = function(grunt) {
3838
},
3939

4040
sass: {
41-
main: {
41+
dist: {
4242
files: {
4343
'css/theme/default.css': 'css/theme/source/default.scss',
4444
'css/theme/beige.css': 'css/theme/source/beige.scss',
@@ -115,7 +115,7 @@ module.exports = function(grunt) {
115115
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
116116
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
117117
grunt.loadNpmTasks( 'grunt-contrib-watch' );
118-
grunt.loadNpmTasks( 'grunt-contrib-sass' );
118+
grunt.loadNpmTasks( 'grunt-sass' );
119119
grunt.loadNpmTasks( 'grunt-contrib-connect' );
120120
grunt.loadNpmTasks( 'grunt-zip' );
121121

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@
3232
"grunt-contrib-cssmin": "~0.4.1",
3333
"grunt-contrib-uglify": "~0.2.4",
3434
"grunt-contrib-watch": "~0.5.3",
35-
"grunt-contrib-sass": "~0.5.0",
35+
"grunt-sass": "~0.14.0",
3636
"grunt-contrib-connect": "~0.4.1",
3737
"grunt-zip": "~0.7.0",
38-
"grunt": "~0.4.0"
38+
"grunt": "~0.4.0",
39+
"node-sass": "~0.9.3"
3940
},
4041
"licenses": [
4142
{

0 commit comments

Comments
 (0)