iT邦幫忙

0

使用任意 git 倉庫初始化項目 - `Code Recycle`

  • 分享至 

  • xImage
  •  
  • 為了方便開發,一般初始化項目時都會使用 git 上的模板倉庫
  • 想了解某個項目的功能時,可能會去運行這個倉庫下的某個實例
  • 或者倉庫下某個文件夾內提供了一些文件模板用來限定一些模塊的初始化
  • 上面三種場景,我們都需要拉取倉庫,但是有時候只需要拉取倉庫的一部分,這時候不妨使用Code Recycle,通過幾行配置進行自定義拉取

全部拉取

changeList:
  - type: copy
    from: https://github.com/maximegris/angular-electron.git
    to: ./ae
    source: git

部分拉取

changeList:
  - type: copy
    from: 
      url: https://github.com/microsoft/vscode-extension-samples.git
      match:
        - /l10n-sample
      output: /l10n-sample
    to: ./l10n
    source: git

拉取模板生成

module.exports = async (util, rule, host, injector) => {
  let list = await util.changeList([
    {
      type: 'copy',
      source: 'git',
      from: {
        url: 'https://github.com/angular/angular-cli.git',
        match: '/packages/schematics/angular/directive/files',
        output: '/packages/schematics/angular/directive/files',
      },
      pathTemplate: '@angular-devkit',
      contentTemplate: '@angular-devkit',
      pathTemplateSuffix: '.template',
      templateContext: { name: 'hello', standalone: true, selector: 'hello', 'if-flat': (input) => '' },
      to: './hello-directive'
    },
  ]);
  await util.updateChangeList(list);
};

更多?

  • 工具目前支持CLIVSCode Extension進行執行,腳本支持yaml/js/ts
  • 您可以查看文檔了解更多
  • 如果您想看更多的實例,可以訪問倉庫查看並運行
  • 如果您已經感興趣,那麽可以快速開始

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言