• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript monterey-pal.FS类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中monterey-pal.FS的典型用法代码示例。如果您正苦于以下问题:TypeScript FS类的具体用法?TypeScript FS怎么用?TypeScript FS使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了FS类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: installNPMDependencies

  installNPMDependencies(project, deps = [], estimation = 'This could take minutes to complete') {
    let task = {
      title: `npm install of '${project.name}'`,
      estimation: estimation,
      logs: [],
      promise: null
    };

    let promise = NPM.install(deps, {
      npmOptions: {
        workingDirectory: FS.getFolderPath(project.packageJSONPath)
      },
      logCallback: (message) => {
        if (message.level === 'custom' || message.level === 'warning' || message.level === 'error') {
          this.taskManager.addTaskLog(task, message.message);
        }
      }
    });

    task.promise = promise;

    this.taskManager.addTask(task);

    return task;
  }
开发者ID:charlespockert,项目名称:monterey,代码行数:25,代码来源:common.ts


示例2: tryInstallLauncherFromRemote

    async tryInstallLauncherFromRemote(platform, launcherPath) {
        try {
            let result = await this.getLauncher(platform, launcherPath);

            let root = FS.getRootDir();
            let file = await FS.downloadFile(result.remoteImagePath, root + "/images/app-launcher/" + platform + "/" + launcherPath + ".png");

            result.data.img = root + "/images/app-launcher/" + platform + "/" + launcherPath + ".png";
            result.data.enabled = true;

            this.state.appLaunchers.push(result);
        }
        catch(err) {
            throw new Error(`Failed to install ${platform}/${launcherPath} launcher: ${err.message}`);
        }
    }
开发者ID:charlespockert,项目名称:monterey,代码行数:16,代码来源:launcher-manager.ts


示例3: getJspm016Path

 getJspm016Path(project, packageJSON) {
   let baseURL = '.';
   if (packageJSON.jspm.directories && packageJSON.jspm.directories.baseURL) {
     baseURL = packageJSON.jspm.directories.baseURL;
   }
   return FS.join(project.path, baseURL, 'config.js');
 }
开发者ID:charlespockert,项目名称:monterey,代码行数:7,代码来源:jspm-detection.ts


示例4: getJspm017Path

 getJspm017Path(project, packageJSON) {
   // TODO: implement reading JSPM 0.17.x configuration
   let baseURL = '';
   if (packageJSON.jspm.directories && packageJSON.jspm.directories.baseURL) {
     baseURL = packageJSON.jspm.directories.baseURL;
   }
   return FS.join(project.path, baseURL, 'jspm.config.js');
 }
开发者ID:charlespockert,项目名称:monterey,代码行数:8,代码来源:jspm-detection.ts


示例5: 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


示例6: openDialog

  /**
  * Opens a folder dialog and adds the selected folder as a project
  */
  async openDialog() {
    let projectFolder = await FS.showOpenDialog({
      title: 'Select a project folder',
      properties: ['openDirectory']
    });

    if (projectFolder && projectFolder.length > 0) {
      return this.projectManager.addProjectByPath(projectFolder[0]);
    }

    return false;
  }
开发者ID:charlespockert,项目名称:monterey,代码行数:15,代码来源:project-finder.ts


示例7: tryLocatePackageJSON

  async tryLocatePackageJSON(project, p) {
    if (await FS.fileExists(p)) {
      project.packageJSONPath = FS.normalize(p);

      let packageJSON = await this.getPackageJSON(project);

      // if the project already has a name then it has just been scaffolded
      if (project.name) {
        // check if the name of the project is equal to the name mentioned in package.json
        if (packageJSON.name !== project.name) {
          // if not, update package.json to use the project name and persist this to the filesystem
          packageJSON.name = project.name;
          await FS.writeFile(project.packageJSONPath, JSON.stringify(packageJSON, null, 4));
        }
      }

      project.name = packageJSON.name;
      return true;
    }

    return false;
  }
开发者ID:charlespockert,项目名称:monterey,代码行数:22,代码来源:index.ts


示例8: manuallyLocatePackageJSON

  async manuallyLocatePackageJSON(project) {
    alert('Unable to find package.json, please point Monterey to package.json');
    let paths = await FS.showOpenDialog({
      title: 'Please select your package.JSON file',
      properties: ['openFile'],
      defaultPath: project.path,
      filters: [
        {name: 'package', extensions: ['json']}
      ]
    });

    if (paths && paths.length > 0) {
      return await this.tryLocatePackageJSON(project, paths[0]);
    }

    return false;
  }
开发者ID:charlespockert,项目名称:monterey,代码行数:17,代码来源:index.ts


示例9: openDialog

  async openDialog(): Promise<Array<Project> | boolean> {
    let projectFolders: Array<string> = await FS.showOpenDialog({
      title: 'Select a project folder',
      properties: ['openDirectory', 'multiSelections']
    });

    if (projectFolders) {
      let projects = [];
      for (let x = 0; x < projectFolders.length; x++) {
        projects.push(await this.projectManager.addProjectByPath(projectFolders[x]));
      }

      return projects;
    }

    return false;
  }
开发者ID:Thanood,项目名称:monterey,代码行数:17,代码来源:project-finder.ts


示例10: 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



注:本文中的monterey-pal.FS类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript moo.compile函数代码示例发布时间:2022-05-25
下一篇:
TypeScript monk-database-helper.DatabaseService类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap