ignore.js
1.91 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
var browserify = require('../');
var test = require('tap').test;
var vm = require('vm');
var path = require('path');
test('ignore', function (t) {
t.plan(1);
var b = browserify();
b.add(__dirname + '/ignore/main.js');
b.ignore(path.join(__dirname, 'ignore/skip.js'));
b.bundle(function (err, src) {
if (err) t.fail(err);
vm.runInNewContext(src, { t: t });
});
});
test('ignore array', function(t) {
t.plan(2);
var b = browserify();
b.add(__dirname + '/ignore/array.js');
b.ignore([
path.join(__dirname, 'ignore/skip.js'),
path.join(__dirname, 'ignore/skip2.js')
]);
b.bundle(function (err, src) {
if (err) {
t.fail(err);
}
vm.runInNewContext(src, { t: t });
});
});
test('ignore by package or id', function (t) {
t.plan(3);
var b = browserify();
b.add(__dirname + '/ignore/by-id.js');
b.ignore('events');
b.ignore('beep');
b.ignore('bad id');
b.bundle(function (err, src) {
if (err) t.fail(err);
vm.runInNewContext(src, { t: t });
});
});
test('ignore files referenced by relative path', function (t) {
// Change the current working directory relative to this file
var cwd = process.cwd();
process.chdir(__dirname);
t.plan(1);
var b = browserify();
b.add(__dirname + '/ignore/by-relative.js');
b.ignore('./ignore/ignored/skip.js');
b.bundle(function (err, src) {
if (err) t.fail(err);
vm.runInNewContext(src, { t: t });
});
// Revert CWD
process.chdir(cwd);
});
test('do not ignore files with relative paths that do not resolve', function (t) {
// Change the current working directory to the ignore folder
var cwd = process.cwd();
process.chdir(__dirname + '/ignore');
t.plan(2);
var b = browserify();
b.add(__dirname + '/ignore/double-skip.js');
b.ignore('./skip.js');
b.bundle(function (err, src) {
if (err) t.fail(err);
vm.runInNewContext(src, { t: t });
});
// Revert CWD
process.chdir(cwd);
});