1.0.2 • Published 9 years ago

node-git-deployor v1.0.2

Weekly downloads
3
License
WTFPL
Repository
github
Last release
9 years ago

node-git-deployor NPM version

A git pusher helper in node.

Install

$ npm install --save-dev node-git-deployor

Usage

'use strict';

var pkg = require('package.json');

var Deployor = require('node-git-deployor');

function publishBuiltFiles() {

  var distWorkspace = Deployor.cloneRepoBranch({
    orphan: true,
    branch: 'dist',
    cloneLocation: '/tmp/dist'
  });

  distWorkspace.extraCleanUp();
  distWorkspace.copy('./dist');
  distWorkspace.commit('Update ' + new Date().toISOString());
  distWorkspace.tag('v' + pkg.version);
  distWorkspace.push();

}


function publishNewSourceRelease() {

  var srcWorkspace = new Deployor();
  srcWorkspace.commit('chore(release): v' + pkg.version);
  srcWorkspace.tag('src' + pkg.version);
  srcWorkspace.push();

}

API

new Deployor(options)

options

Type: Object

Options to pass to the Deployor.

options.cwd

Type: String Default: process.cwd()

cwd of the input folder

options.branch

Type: String Default: master

The branch to deploy to.

options.orphan

Type: Boolean Default: false

Setting this to true will force the use of a orphan branch for the deployment.

  • TODO(douglasduteil): confirm this

options.cloneLocation

Type: String Default: path.join('/', 'tmp', path.basename(process.cwd()))

The path where the temporal deployed file will be cloned.

Deployor instance deployor

deployor.extraCleanUp

  • TODO(douglasduteil): document this

deployor.copy

  • TODO(douglasduteil): document this

deployor.commit

  • TODO(douglasduteil): document this

deployor.tag

  • TODO(douglasduteil): document this

deployor.push

  • TODO(douglasduteil): document this

Deployor.cloneRepoBranch(options)

  • TODO(douglasduteil): document this

License

Copyright © 2014 Douglas Duteil <douglasduteil@gmail.com>
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See the LICENCE file for more details.
1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.1.0

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago