1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Joel Cross <joel@kazbak.co.uk>
Date: Wed, 23 Jan 2019 15:48:03 +0000
Subject: Use local grunt-contrib-cssmin script
---
Gruntfile.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Gruntfile.js b/Gruntfile.js
index 36b04a2..f3928ed 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -206,7 +206,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-connect');
- grunt.loadNpmTasks('grunt-contrib-cssmin');
+ require('./debian/scripts/grunt-contrib-cssmin')(grunt);
grunt.loadNpmTasks('grunt-run');
// Serve files
|