Remove unused

This commit is contained in:
Ruud
2014-12-04 23:31:45 +01:00
parent 87086a0336
commit f992c00eb7
2 changed files with 3 additions and 5 deletions
+3 -3
View File
@@ -70,7 +70,7 @@ module.exports = function(grunt){
// COOL TASKS ==============================================================
watch: {
scss: {
files: ['**/*.{scss,sass}'],
files: ['<%= config.base %>/**/*.{scss,sass}'],
tasks: ['sass:server', 'autoprefixer', 'cssmin'],
options: {
'livereload': true
@@ -78,9 +78,9 @@ module.exports = function(grunt){
},
js: {
files: [
'<%= config.base %>/scripts/**/*.js'
'<%= config.base %>/**/*.js'
],
tasks: ['jshint'],
tasks: ['jshint', 'uglify'],
options: {
'livereload': true
}
-2
View File
@@ -13,10 +13,8 @@
"grunt": "~0.4.5",
"grunt-autoprefixer": "^2.0.0",
"grunt-concurrent": "~1.0.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-cssmin": "~0.10.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-less": "~0.12.0",
"grunt-contrib-sass": "^0.8.1",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",