Browse Source

Remove unused

pull/5180/head
Ruud 11 years ago
parent
commit
f992c00eb7
  1. 6
      Gruntfile.js
  2. 2
      package.json

6
Gruntfile.js

@ -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
package.json

@ -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",

Loading…
Cancel
Save