file-deploy

1.1.0 • Public • Published

file-deploy

Dependencies version downloads

PRs Welcome

Watch on GitHub Star on GitHub

This is a command for deploying generated files to a git branch. Unlike the git-subtree approach, it does not require the generated files be committed to the source branch.

Installation

npm install --save-dev file-deploy

Usage

deploy [args]

options

You can specify options in .deployinfo. It must be valid JSON file. The example is:

{
  "directory": "dist/",
  "repo": "git@github.com:ineo6/file-deploy.git",
  "username": "deployBot",
  "email": "deployBot@bot.com",
  "branch": "gh-pages"
}

Alternatively, options can be specified in package.json:

{
  "config": {
    "deploy-info": {
      /* your config here */
    }
  }
}

.deployinfo has precedence, if it does not exist, then package.json will be used.

directory

The subdirectory to deploy. Defaults to dist/.

branch

The branch that will receive the deploy. Defaults to gh-pages.

repo

The repo to push the deploy to. Defaults to origin.

username

The username that will be associated with the deploy commit.

email

The email that will be associated with the deploy commit.

Readme

Keywords

none

Package Sidebar

Install

npm i file-deploy

Weekly Downloads

2

Version

1.1.0

License

MIT

Unpacked Size

15.3 kB

Total Files

10

Last publish

Collaborators

  • ineo6