- 為了方便開發,一般初始化項目時都會使用 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);
};
更多?
- 工具目前支持
CLI
與VSCode Extension
進行執行,腳本支持yaml
/js
/ts
- 您可以查看文檔了解更多
- 如果您想看更多的實例,可以訪問倉庫查看並運行
- 如果您已經感興趣,那麽可以快速開始