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,12 @@
import BaseDistribution from '../base-distribution';
import {NodeInputs} from '../base-models';
export default class RcBuild extends BaseDistribution {
constructor(nodeInfo: NodeInputs) {
super(nodeInfo);
}
getDistributionUrl(): string {
return 'https://nodejs.org/download/rc';
}
}