From ed7a0d75c66b0de7f28492da28d1c0a1e16548b3 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 24 Aug 2014 16:45:06 -0500 Subject: [PATCH] Remove Grunt completely, add gulp-rev --- Gruntfile.js | 25 ------------------------- package.json | 6 +++--- 2 files changed, 3 insertions(+), 28 deletions(-) delete mode 100644 Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 22e8e67..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,25 +0,0 @@ -'use strict'; -module.exports = function(grunt) { - - grunt.loadNpmTasks('grunt-wp-assets'); - - grunt.initConfig({ - version: { - default: { - options: { - format: true, - length: 32, - manifest: 'assets/manifest.json', - querystring: { - style: 'roots_css', - script: 'roots_js' - } - }, - files: { - 'lib/scripts.php': 'assets/{css,js}/{main,scripts}.min.{css,js}' - } - } - } - }); - -}; diff --git a/package.json b/package.json index 8eace7c..aea817a 100644 --- a/package.json +++ b/package.json @@ -24,19 +24,19 @@ }, "devDependencies": { "bower": ">=1.3.9", - "grunt": "^0.4.5", - "grunt-wp-assets": "^0.2.6", "gulp": "^3.8.7", "gulp-autoprefixer": "0.0.8", "gulp-concat": "^2.3.4", "gulp-grunt": "^0.5.2", "gulp-jshint": "^1.8.4", + "jshint-stylish": "^0.4.0", "gulp-less": "^1.3.3", "gulp-livereload": "^2.1.0", "gulp-minify-css": "^0.3.7", "gulp-modernizr": "https://github.com/doctyper/gulp-modernizr/tarball/develop", "gulp-rename": "^1.2.0", "gulp-sourcemaps": "^1.1.1", - "gulp-uglify": "^0.3.1" + "gulp-uglify": "^0.3.1", + "gulp-rev": "^1.1.0" } }