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


TypeScript FS.readFile方法代碼示例

本文整理匯總了TypeScript中monterey-pal.FS.readFile方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript FS.readFile方法的具體用法?TypeScript FS.readFile怎麽用?TypeScript FS.readFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在monterey-pal.FS的用法示例。


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

示例1: findJspmConfig

  async findJspmConfig(project) {
    let packageJSON = JSON.parse(await FS.readFile(project.packageJSONPath));
    let isUsingJSPM = false;
    let configJs = null;

    if (packageJSON.jspm) {

      await this.findJspmVersion(project, packageJSON);

      let jspm016Path = this.getJspm016Path(project, packageJSON);
      let jspm017Path = this.getJspm017Path(project, packageJSON);

      // we were unable to find JSPM in the devDependencies section of package.json
      // so we're just going to look for a config.js or a jspm.config.js
      // in order to try and determine what JSPM version is being used
      if (!project.jspmVersion) {
        if (await FS.fileExists(jspm016Path)) {
          project.configJsPath = jspm016Path;
          project.jspmVersion = '^0.16.0';
          project.jspmDefinition = '^0.16.0';
        } else if (await FS.fileExists(jspm017Path)) {
          project.configJsPath = jspm016Path;
          project.jspmVersion = '^0.17.0';
          project.jspmDefinition = '^0.17.0';
        }
      } else {
        let major = parseInt(project.jspmVersion.split('.')[0], 10);
        let minor = parseInt(project.jspmVersion.split('.')[1], 10);
        if (major === 0) {
          if (minor < 17) {
            project.configJsPath = jspm016Path;
          } else {
            project.configJsPath = jspm017Path;
          }
        }
      }

      if (project.configJsPath && project.jspmVersion) {
        isUsingJSPM = true;
      }
    }

    project.isUsingJSPM = isUsingJSPM;
  }
開發者ID:charlespockert,項目名稱:monterey,代碼行數:44,代碼來源:jspm-detection.ts

示例2: analyze

  async analyze(project) {
    let packageJSON = JSON.parse(await FS.readFile(project.packageJSONPath));
    let deps = Object.assign({}, packageJSON.dependencies, packageJSON.devDependencies);
    let topLevelDependencies = [];

    // normalize data for the grid
    let keys = Object.keys(deps);
    for (let i = 0; i < keys.length; i++) {
      let key = keys[i];
      let dep = deps[key];

      topLevelDependencies.push({
        name: key,
        range: deps[key]
      });
    }

    return topLevelDependencies;
  }
開發者ID:charlespockert,項目名稱:monterey,代碼行數:19,代碼來源:analyzer.ts

示例3: getPackageJSON

 async getPackageJSON(project) {
   return JSON.parse(await FS.readFile(project.packageJSONPath));
 }
開發者ID:charlespockert,項目名稱:monterey,代碼行數:3,代碼來源:index.ts


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