gruntを使用して構築されたプロジェクトに取り組んでいます。または. _ npm install
_ grunt mySetupTask
_
http://gruntjs.com/plugins/checkoutgrunt-gitco
でプラグインの痕跡を見てきましたが、利用できないようです。
これの良い出発点はありますか?
gruntを使用して構築されたプロジェクトに取り組んでいます。または. _ npm install
_ grunt mySetupTask
_
http://gruntjs.com/plugins/checkoutgrunt-gitco
でプラグインの痕跡を見てきましたが、利用できないようです。
これの良い出発点はありますか?
package.json にnpm postinstall スクリプトを設定します。
{
"name": "mypackage",
"scripts": {
"postinstall": "git clone git://github.com/facebook/xctool.git"
}
}
または、grunt-shellを使用してコマンドを実行し、レポをクローンします。
grunt.initConfig({
shell: {
gitclone: {
command: 'git clone git://github.com/facebook/xctool.git'
}
}
});
このための Grunt プラグインが追加されました。当時入手可能かどうかは不明。私はまだそれを機能させるためにいくつかの問題を抱えています。
https://npmjs.org/package/grunt-git
gitclone:
clone:
options:
repository: "https://github.com/imaginethepoet/autojqm"
branch: "master"
directory: "repo"