29 lines
1006 B
JavaScript
29 lines
1006 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
/**
|
|
* The default CDN URL, used if not overridden by user
|
|
*/
|
|
CDN_URL: 'https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/',
|
|
/**
|
|
* The default filesystem path where chromium will be installed.
|
|
*/
|
|
BIN_OUT_PATH: path.join(__dirname, 'lib', 'chromium'),
|
|
/**
|
|
* Gets a configuration parameter from the environment.
|
|
* Will first check for a lowercase variant set via npm config in the format: `npm_config_${name.toLowerCase()}`.
|
|
* If not set then will check the environment for the variable, as provided.
|
|
* @param {string} name The name of the environment variable, case sensitive, conventionally uppercase.
|
|
* @returns {string} The value of the environment variable.
|
|
*/
|
|
getEnvVar: name => {
|
|
if (!name) {
|
|
return '';
|
|
}
|
|
|
|
return process.env[`npm_config_${name.toLowerCase()}`] || process.env[name] || '';
|
|
}
|
|
};
|