Add support for v8-canary, nightly and rc (#655)

This commit is contained in:
Dmitry Shibanov 2023-01-05 13:16:21 +01:00 committed by GitHub
parent 92a57f4a93
commit 64ed1c7eab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 3976 additions and 1648 deletions

View file

@ -0,0 +1,13 @@
import BasePrereleaseNodejs from '../base-distribution-prerelease';
import {NodeInputs} from '../base-models';
export default class CanaryBuild extends BasePrereleaseNodejs {
protected distribution = 'v8-canary';
constructor(nodeInfo: NodeInputs) {
super(nodeInfo);
}
protected getDistributionUrl(): string {
return 'https://nodejs.org/download/v8-canary';
}
}