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


TypeScript host.Host類代碼示例

本文整理匯總了TypeScript中@angular-devkit/core/src/virtual-fs/host.Host的典型用法代碼示例。如果您正苦於以下問題:TypeScript Host類的具體用法?TypeScript Host怎麽用?TypeScript Host使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: getTemplateDir

export async function getTemplateDir(host: Host, root: Path): Promise<Path> {
  const packageJson = resolve('@angular/bazel', {
    basedir: root,
    resolvePackageJson: true,
  });
  const packageDir = dirname(packageJson as Path);
  const templateDir = join(packageDir, 'src', 'builders', 'files');
  if (!await host.isDirectory(templateDir).toPromise()) {
    throw new Error('Could not find Bazel template directory in "@angular/bazel".');
  }
  return templateDir;
}
開發者ID:StephenFluin,項目名稱:angular,代碼行數:12,代碼來源:bazel.ts

示例2: getTemplateDir

export async function getTemplateDir(host: Host, root: Path): Promise<Path> {
  const packageJson = require.resolve('@angular/bazel/package.json', {
    paths: [getSystemPath(root)],
  });

  const packageDir = dirname(normalize(packageJson));
  const templateDir = join(packageDir, 'src', 'builders', 'files');
  if (!await host.isDirectory(templateDir).toPromise()) {
    throw new Error('Could not find Bazel template directory in "@angular/bazel".');
  }
  return templateDir;
}
開發者ID:Cammisuli,項目名稱:angular,代碼行數:12,代碼來源:bazel.ts

示例3: list

 async function list(dir: Path, root: Path, results: Path[]) {
   const paths = await host.list(dir).toPromise();
   for (const path of paths) {
     const absPath = join(dir, path);
     const relPath = join(root, path);
     if (await host.isFile(absPath).toPromise()) {
       results.push(relPath);
     } else {
       await list(absPath, relPath, results);
     }
   }
   return results;
 }
開發者ID:StephenFluin,項目名稱:angular,代碼行數:13,代碼來源:bazel.ts

示例4: copyFile

 await Promise.all(templates.map(async(template) => {
   const name = template.replace('__dot__', '.').replace('.template', '');
   const source = join(templateDir, template);
   const dest = join(root, name);
   try {
     const exists = await host.exists(dest).toPromise();
     if (!exists) {
       await copyFile(host, source, dest);
       bazelFiles.push(dest);
     }
   } catch {
   }
 }));
開發者ID:StephenFluin,項目名稱:angular,代碼行數:13,代碼來源:bazel.ts

示例5:

 return Promise.all(files.map(async(file) => {
   try {
     await host.delete(file).toPromise();
   } catch {
   }
 }));
開發者ID:StephenFluin,項目名稱:angular,代碼行數:6,代碼來源:bazel.ts


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