-
Notifications
You must be signed in to change notification settings - Fork 539
/
.tav.yml
33 lines (33 loc) · 942 Bytes
/
.tav.yml
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
tedious:
- versions:
include: ">=1.11.0 <12"
# 4.0.0 is broken: https://github.com/tediousjs/tedious/commit/4eceb48
exclude: "4.0.0"
mode: latest-majors
commands: npm run test
- versions:
include: ">=12 <17"
mode: latest-majors
node: '>=16'
commands: npm run test
- versions:
include: ">=17 <18"
mode: latest-majors
node: '>=18'
commands: npm run test
- versions:
include: ">=18 <19"
mode: latest-majors
node: '>=18'
commands: npm run test
# tedious@18 started including its own .d.ts files, and they require
# TypeScript v5 to use. This peerDependencies can be removed when this
# package updates to TypeScript v5.
peerDependencies: typescript@5
- versions:
include: ">=19 <20"
mode: latest-majors
node: '>=18.17'
commands: npm run test
# See typescript@5 note above.
peerDependencies: typescript@5