rtfeldman / node-test-runner

Runs elm-test suites from Node.js. Get it with npm install -g elm-test
BSD 3-Clause "New" or "Revised" License
134 stars 79 forks source link

Drop Node.js 10 #559

Closed lydell closed 2 years ago

lydell commented 2 years ago

Closes #515

Node.js 10 became end-of-life 2021-04-30.

There is a pull request that needs worker_threads: https://github.com/rtfeldman/node-test-runner/pull/558.

The worker_threads module technically exists in Node.js 10, but is behind the --experimental-worker. In Node.js 12 the module is marked as stable and can be used without flags.

Since Node.js 10 has been end-of-life for many months now and we need newer features, it’s time to drop support for Node.js 10.

The new lowest supported version is Node.js 12.13.0, which is the oldest long term support release of Node.js 12: https://nodejs.org/es/blog/release/v12.13.0/

This PR:

harrysarson commented 2 years ago

LGTM

harrysarson commented 2 years ago

closes #515

harrysarson commented 2 years ago

@lydell merge when ready :)