0.1.4 • Published 3 years ago

bzr v0.1.4

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

node-bzr

A simple node wrapper around the bzr source code management tool.

Usage

import Bzr from "bzr";

const bzr = Bzr("path/to/working/directory");

bzr
  .raw(["branch", "lp:myrepo"])
  .then(() => {
    console.log("Code copied!");
    return bzr.tags();
  })
  .then((tags) => {
    console.log("Here are the tags:", tags);
  });
0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago