Convert .less to .scss
This commit is contained in:
.sass-cache
36c9f4f11ace8281d8239c322b08f410988edc2b
coderay.scsscelements.scsscforms.scsscgrid.scsscmixins.scsscnormalize.scsscpage.scsscpygments.scsscsite.scssctypography.scsscvariables.scssc
5c5f8bb32507fa9038b91bad17d78106bed42d83
_bordered-pulled.scssc_core.scssc_fixed-width.scssc_icons.scssc_larger.scssc_list.scssc_mixins.scssc_path.scssc_rotated-flipped.scssc_spinning.scssc_stacked.scssc_variables.scsscfont-awesome.scssc
c381b8bf3e7a4cd078c88074ec85299726c0e985
_includes
_sass
coderay.scsselements.scssforms.scssgrid.scssmixins.scssnormalize.scsspage.scssprint.scsspygments.scsssite.scsstypography.scssvariables.scss
vendor
assets
22
Gruntfile.js
22
Gruntfile.js
@ -13,19 +13,6 @@ module.exports = function(grunt) {
|
||||
'!assets/js/scripts.min.js'
|
||||
]
|
||||
},
|
||||
recess: {
|
||||
dist: {
|
||||
options: {
|
||||
compile: true,
|
||||
compress: true
|
||||
},
|
||||
files: {
|
||||
'assets/css/main.min.css': [
|
||||
'assets/less/main.less'
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
uglify: {
|
||||
dist: {
|
||||
files: {
|
||||
@ -61,12 +48,6 @@ module.exports = function(grunt) {
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
less: {
|
||||
files: [
|
||||
'assets/less/*.less'
|
||||
],
|
||||
tasks: ['recess']
|
||||
},
|
||||
js: {
|
||||
files: [
|
||||
'<%= jshint.all %>'
|
||||
@ -76,7 +57,6 @@ module.exports = function(grunt) {
|
||||
},
|
||||
clean: {
|
||||
dist: [
|
||||
'assets/css/main.min.css',
|
||||
'assets/js/scripts.min.js'
|
||||
]
|
||||
}
|
||||
@ -87,14 +67,12 @@ module.exports = function(grunt) {
|
||||
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
grunt.loadNpmTasks('grunt-recess');
|
||||
grunt.loadNpmTasks('grunt-contrib-imagemin');
|
||||
grunt.loadNpmTasks('grunt-svgmin');
|
||||
|
||||
// Register tasks
|
||||
grunt.registerTask('default', [
|
||||
'clean',
|
||||
'recess',
|
||||
'uglify',
|
||||
'imagemin',
|
||||
'svgmin'
|
||||
|
Reference in New Issue
Block a user