-
Notifications
You must be signed in to change notification settings - Fork 0
/
rivendell.mjs
40 lines (40 loc) · 895 Bytes
/
rivendell.mjs
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
export default {
dependencies: [
{
include: '*',
paths: [
'package.json',
'README.md',
'src/**',
'tsconfig.json',
],
ignorePaths: 'src/tests/**',
},
{
include: '*',
dev: true,
paths: [
'*.cjs',
'src/tests/**',
],
},
{
include: '*',
root: true,
paths: [
'tsconfig.build.json',
'common/config/publish/*',
],
},
{
include: '*',
root: true,
dev: true,
paths: [
'.eslintignore',
'./root/jacobley/.eslintrc.cjs',
'tsconfig.eslint.json',
],
},
],
};