File: 01-simplify-gruntfile.diff

package info (click to toggle)
node-rx 4.1.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 8,984 kB
  • ctags: 3,878
  • sloc: sh: 45; makefile: 8
file content (46 lines) | stat: -rw-r--r-- 1,084 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
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'
   ]);
 };