0.0.5 • Published 7 years ago

octopus-start-prepush v0.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

octopus-start-prepush

start-runner task that adds a git pre-push script that runs task sync on before git push.

install

npm install --save-dev octopus-start-prepush

Usage

Add task to modules.spec.js and another task sync that will be invoked before git push:

const Start = require('start'),
 prepush = require('octopus-start-prepush');

const start = new Start();

module.exports.init = () => start(prepush);
module.exports.sync = () => start(() => console.log('synced'));

Add start-simple-cli task to package.json scripts:

{
  "scripts": {
    "start": "start-runner"
  }
}

Run npm start init once to have hook installed and then on every next push npm start sync will be executed.

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago