當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript read-config-file.orNullIfFileNotExist函數代碼示例

本文整理匯總了TypeScript中read-config-file.orNullIfFileNotExist函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript orNullIfFileNotExist函數的具體用法?TypeScript orNullIfFileNotExist怎麽用?TypeScript orNullIfFileNotExist使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了orNullIfFileNotExist函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: loadEnv

async function loadEnv(envFile: string) {
  const data = await orNullIfFileNotExist(readFile(envFile, "utf8"))
  if (data == null) {
    return null
  }

  const parsed = parseEnv(data)
  for (const key of Object.keys(parsed)) {
    if (!process.env.hasOwnProperty(key)) {
      process.env[key] = parsed[key]
    }
  }
  require("dotenv-expand")(parsed)
  return parsed
}
開發者ID:jwheare,項目名稱:electron-builder,代碼行數:15,代碼來源:cli.ts

示例2: Lazy

 const packageMetadata = new Lazy(() => orNullIfFileNotExist(readJson(path.join(projectDir, "package.json"))))
開發者ID:electron-userland,項目名稱:electron-builder,代碼行數:1,代碼來源:install-app-deps.ts

示例3: getElectronVersion

export async function getElectronVersion(projectDir: string, config?: Configuration, projectMetadata: MetadataValue = new Lazy(() => orNullIfFileNotExist(readJson(path.join(projectDir, "package.json"))))): Promise<string> {
開發者ID:jwheare,項目名稱:electron-builder,代碼行數:1,代碼來源:electronVersion.ts

示例4: Lazy

 packageMetadata: Lazy<{ [key: string]: any } | null> = new Lazy(() => orNullIfFileNotExist(readJson(path.join(projectDir, "package.json"))))): Promise<Configuration> {
開發者ID:electron-userland,項目名稱:electron-builder,代碼行數:1,代碼來源:config.ts

示例5: getConfig

export async function getConfig(projectDir: string, configPath: string | null, configFromOptions: Configuration | null | undefined, packageMetadata: Lazy<{ [key: string]: any } | null> = new Lazy(() => orNullIfFileNotExist(readJson(path.join(projectDir, "package.json"))))): Promise<Configuration> {
開發者ID:ledinhphuong,項目名稱:electron-builder,代碼行數:1,代碼來源:config.ts


注:本文中的read-config-file.orNullIfFileNotExist函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。