File: 0001-Add-build-task-to-Grunt.patch

package info (click to toggle)
json-editor.js 1.3.2%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,700 kB
  • sloc: javascript: 10,168; perl: 39; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
From: Joel Cross <joel@kazbak.co.uk>
Date: Tue, 15 May 2018 14:10:33 +0100
Subject: Add 'build' task to Grunt

---
 Gruntfile.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Gruntfile.js b/Gruntfile.js
index 9e1cd2a..36b04a2 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -220,5 +220,6 @@ module.exports = function(grunt) {
   grunt.registerTask('default', ['jshint:beforeconcat','concat','jshint:afterconcat','uglify','cssmin']);
 
   grunt.registerTask('rawbuild', ['concat','uglify','cssmin']);
+  grunt.registerTask('build', ['rawbuild']);
 
 };