Skip to content

Commit 2c0afc8

Browse files
committed
test: drop older versions of typescript
The new `IsNever` only works with 3.5, so all older versions need to be dropped. This will bump the major version of `simplytyped` to avoid any breaking changes. I think it is worth it to drop older versions of the language to keep this package from rotting too severely, as long as we are careful with updating the major version whenever we change the supported TS versions. BREAKING CHANGE: no longer supporting typescript < 3.5
1 parent acae02b commit 2c0afc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/testTsVersions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set -e
22

3-
for v in 3.0.3 3.1.6 3.2.2 next; do
3+
for v in 3.5.3 next; do
44
npm install --no-save typescript@$v
55
npm test
66
done

0 commit comments

Comments
 (0)