forked from nvdnkpr/node-force-domain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roboter.js
59 lines (47 loc) · 1.61 KB
/
roboter.js
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
'use strict';
const roboter = require('roboter');
roboter.
workOn('server').
equipWith(task => {
task('universal/analyze', {
src: [ '**/*.js', '!node_modules/**/*.js', '!coverage/**/*.js', '!dist/**/*.js' ]
});
task('universal/release', {
createDistribution: true
});
task('universal/test-units', {
src: 'test/**/*Tests.js'
});
task('universal/license', {
compatible: [
// Individual licenses
'Apache-2.0', 'Apache-2.0*',
'BSD-2-Clause', 'BSD-3-Clause',
'ISC',
'MIT', 'MIT*', 'MIT/X11',
'MIT Licensed. http://www.opensource.org/licenses/mit-license.php',
'Public Domain',
'Unlicense',
// Combined licenses
'(Apache-2.0 OR MPL-1.1)',
'BSD-3-Clause OR MIT',
'(MIT AND CC-BY-3.0)',
'(WTFPL OR MIT)'
],
ignore: {
// BSD-3-Clause, see https://github.com/deoxxa/duplexer2/blob/0.0.2/LICENSE.md
duplexer2: '0.0.2',
// MIT, see https://github.com/mklabs/node-fileset/blob/v0.2.1/LICENSE-MIT
fileset: '0.2.1',
// MIT, https://github.com/tarruda/has/blob/1.0.1/package.json
has: '1.0.1',
// BSD-2-Clause, see https://github.com/facebook/regenerator/blob/85c9e43331576be96e5dcc61757995397ab15b77/LICENSE
'regenerator-transform': '0.9.11',
// BSD-2-Clause, see https://github.com/jviereck/regjsparser/blob/0.1.5/LICENSE.BSD
regjsparser: '0.1.5',
// MIT, see https://github.com/eugeneware/unique-stream/blob/v1.0.0/LICENSE
'unique-stream': '1.0.0'
}
});
}).
start();