Package: node-rx / 4.1.0+dfsg1-3

01-simplify-gruntfile.diff Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Description: Get rid of qunit, jscs, jshint and watch grunt stuff.
Forwarded: not-needed
Author: Paolo Greppi <paolo.greppi@libpf.com>

Index: node-rx/Gruntfile.js
===================================================================
--- node-rx.orig/Gruntfile.js
+++ node-rx/Gruntfile.js
@@ -2364,29 +2364,6 @@ module.exports = function (grunt) {
           files: {'dist/rx.sorting.min.js': ['dist/rx.sorting.js'] }
         }
       },
-      qunit: {
-          all: ['tests/*.html']
-      },
-      jshint: {
-        all: [
-          'rx.all.js'
-        ]
-      },
-      jscs: {
-        src: 'src/**/*.js',
-        options: {
-          config: '.jscsrc'
-        }
-      },
-      watch: {
-        scripts: {
-          files: 'src/**/*.js',
-          tasks: ['default'],
-          options: {
-            interrupt: true
-          }
-        }
-      },
       copy: {
         'lite': {
           flatten: true,
@@ -2940,7 +2917,6 @@ module.exports = function (grunt) {
     'copy:core-binding',
     'copy:core-testing',
 
-    'qunit',
 	'rebuild-ts'
   ]);
 };