mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
43 lines
962 B
TypeScript
43 lines
962 B
TypeScript
import { warnOnce } from './log';
|
|
import { env } from '../index';
|
|
|
|
function getCLILib() {
|
|
if (!env.nativescriptLibPath) {
|
|
if (typeof env.nativescriptLibPath !== 'boolean') {
|
|
warnOnce(
|
|
'getCLILib',
|
|
`
|
|
Cannot find NativeScript CLI path. Make sure --env.nativescriptLibPath is passed
|
|
`
|
|
);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (typeof env.nativescriptLibPath === 'boolean') {
|
|
return false;
|
|
}
|
|
|
|
return require(env.nativescriptLibPath as string);
|
|
}
|
|
|
|
/**
|
|
* Utility to get a value from the nativescript.config.ts file.
|
|
*
|
|
* @param {string} key The key to get from the config. Supports dot-notation.
|
|
* @param defaultValue The fallback value if the key is not set in the config.
|
|
*/
|
|
export function getValue<T = any>(key: string, defaultValue?: any): T {
|
|
const lib = getCLILib();
|
|
|
|
if (!lib) {
|
|
return defaultValue;
|
|
}
|
|
|
|
return (
|
|
lib.projectConfigService as {
|
|
getValue(key: string, defaultValue?: any): T;
|
|
}
|
|
).getValue(key, defaultValue);
|
|
}
|