-
Notifications
You must be signed in to change notification settings - Fork 4
/
roboter.js
43 lines (36 loc) · 1.1 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
'use strict';
const roboter = require('roboter');
roboter.
workOn('server').
equipWith(task => {
task('universal/analyze', {
src: [ '**/*.js', '!node_modules/**/*.js', '!coverage/**/*.js' ],
rules: '.eslintrc.json'
});
task('universal/license', {
compatible: [
// Individual licenses
'Apache-2.0', 'Apache-2.0*',
'BSD-2-Clause', 'BSD-3-Clause',
'ISC',
'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, see https://github.com/eugeneware/unique-stream/blob/v1.0.0/LICENSE
'unique-stream': '1.0.0'
}
});
}).
start();