Skip to content
This repository has been archived by the owner on May 25, 2019. It is now read-only.

Commit

Permalink
remove sass:server
Browse files Browse the repository at this point in the history
  • Loading branch information
neilhem committed Jul 13, 2015
1 parent 3803507 commit 41c1b71
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module.exports = function (grunt) {
},<% if (includeSass) { %>
sass: {
files: ['<%%= config.app %>/styles/{,*/}*.{scss,sass}'],
tasks: ['sass:server', 'postcss']
tasks: ['sass', 'postcss']
},<% } %>
styles: {
files: ['<%%= config.app %>/styles/{,*/}*.css'],
Expand Down Expand Up @@ -202,15 +202,6 @@ module.exports = function (grunt) {
dest: '.tmp/styles',
ext: '.css'
}]
},
server: {
files: [{
expand: true,
cwd: '<%%= config.app %>/styles',
src: ['*.{scss,sass}'],
dest: '.tmp/styles',
ext: '.css'
}]
}
},<% } %>

Expand Down Expand Up @@ -417,7 +408,7 @@ module.exports = function (grunt) {
concurrent: {
server: [<% if (useBabel) { %>
'babel:dist',<% } %><% if (includeSass) { %>
'sass:server'<% } else { %>
'sass'<% } else { %>
'copy:styles'<% } %>
],
test: [<% if (useBabel) { %>
Expand Down

0 comments on commit 41c1b71

Please sign in to comment.