mirror of
https://github.com/denoland/deno.git
synced 2024-12-02 17:01:14 -05:00
41f618a1df
Note: If the package information has already been cached, then this requires running with `--reload` or for the registry information to be fetched some other way (ex. the cache busting). Closes #15544 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
13 lines
No EOL
329 B
JavaScript
13 lines
No EOL
329 B
JavaScript
const packageByOs = {
|
|
"darwin": "@denotest/binary-package-mac",
|
|
"linux": "@denotest/binary-package-linux",
|
|
"win32": "@denotest/binary-package-windows",
|
|
}
|
|
|
|
const selectedPackage = packageByOs[process.platform];
|
|
|
|
if (!selectedPackage) {
|
|
throw new Error("trying to run on unsupported platform");
|
|
}
|
|
|
|
require(selectedPackage); |