1.0.4 • Published 5 years ago

gc-deployer-git v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

主工程下安装

yarn add -D gc-deployer-git
npm install gc-deployer-git --save-dev
// index.js

const deploy = require("gc-deployer-git");
const base_dir = process.cwd();
const public_dir = `${base_dir}/_site/`;
const components_public_dir = `${base_dir}/dist/`;

const params = {
  base_dir,
  type: "git",
  branch: "master",
  _: []
};

const docParams = {
  ...params,
  public_dir,
  deploy_dir: ".doc",
  repository: { coding: "git@10.59.99.33:/home/git/doc.git" }
};

const componentsParams = {
  ...params,
  public_dir: components_public_dir,
  deploy_dir: ".components",
  repository: { coding: "git@10.59.99.33:/home/git/components.git" }
};

```bash
node index.js

1.0.4

修复不自动提交的bug

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago