Skip to content

Commit

Permalink
fix(grunt): leading_quotes not invoked for serve task
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Sep 2, 2015
1 parent 2fb2862 commit 2bb107a
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -552,24 +552,6 @@ module.exports = (grunt) ->
tagMessage: "chore: create tag %VERSION%"
push: false

grunt.registerTask "serve", "Fire up a server on local machine for development", [
"clean:default"
"copy:serve"
"less:serve"
"postcss:serve"
"jekyll:serve"
"browserSync"
"watch"
]

grunt.registerTask "test", "Build test task", [
"build"
"theme-add"
"theme-update"
"theme-save"
"amsf-update"
]

grunt.registerTask "theme-upgrade", "Upgrade specific theme from AMSF cache to app", [
"shell:amsf__theme__to_app"
]
Expand Down Expand Up @@ -617,6 +599,25 @@ module.exports = (grunt) ->
"copy:amsf__core__to_app"
]

grunt.registerTask "serve", "Fire up a server on local machine for development", [
"clean:default"
"copy:serve"
"less:serve"
"postcss:serve"
"jekyll:serve"
"leading_quotes:default"
"browserSync"
"watch"
]

grunt.registerTask "test", "Build test task", [
"build"
"theme-add"
"theme-update"
"theme-save"
"amsf-update"
]

grunt.registerTask "update", "Update AMSF and the activated theme", [
"amsf-update"
"theme-update"
Expand All @@ -631,7 +632,7 @@ module.exports = (grunt) ->
"postcss:dist"
"csscomb"
"jekyll:dist"
"leading_quotes"
"leading_quotes:default"
"concurrent:dist"
"assets_inline"
"cacheBust"
Expand Down

0 comments on commit 2bb107a

Please sign in to comment.