GoogleCloudPlatform/nodejs-repo-tools

Name: nodejs-repo-tools

Owner: Google Cloud Platform

Description: A tool used to maintain and test Google GitHub repositories.

Created: 2016-04-25 19:57:09.0

Updated: 2018-05-16 09:43:59.0

Pushed: 2018-05-24 11:06:57.0

Homepage:

Size: 557

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

nodejs-repo-tools build status coverage Greenkeeper badge

A tool used to maintain and test repositories in the GoogleCloudPlatform organization.

Table of contents

Installation

Via npm:

  1. npm install -g @google-cloud/nodejs-repo-tools
  2. repo-tools --help

Via download (Linux):

  1. curl -O https://storage.googleapis.com/cloud-docs-samples/releases/latest/nodejs-repo-tools-linux
  2. mv ./nodejs-repo-tools-linux $HOME/bin/repo-tools
  3. chmod +x $HOME/bin/repo-tools

Via download (Mac):

  1. curl -O https://storage.googleapis.com/cloud-docs-samples/releases/latest/nodejs-repo-tools-macos
  2. mv ./nodejs-repo-tools-macos $HOME/bin/repo-tools
  3. chmod +x $HOME/bin/repo-tools

Via download (Windows):

Download link

CLI usage

Usage: repo-tools --help or tools --help

ands:
ec                  Run a given command in /Users/jdobry/projects/nodejs-repo-tools.
nerate <targets..>  Generate the given target(s) in /Users/jdobry/projects/nodejs-repo-tools.
nt                  Lint files by running: semistandard in /Users/jdobry/projects/nodejs-repo-tools.
st                  List samples.
st                  Run a test sub-command.
ify                 (Node.js only) Recursively add sub-directory dependencies to the top-level package.json file.

ons:
build-pack, -b  Choices: nodejs, python, ruby. Detected: nodejs. The build pack to use. The tool will attempt to
                detect which build to use.                                                                  [string]
local-path, -l  Current: /Users/jdobry/projects/nodejs-repo-tools. Use this option to set the current working
                directory of the command.                                                                   [string]
dry-run         Default: false. Print the actions that would be taken, but don't actually do anything.     [boolean]
silent          Default: false. If true, hide the output of shell commands.                                [boolean]
help            Show help                                                                                  [boolean]
version         Show version number                                                                        [boolean]

more information, see https://github.com/GoogleCloudPlatform/nodejs-repo-tools
Programmatic usage
  1. Install the tool:

    npm install --save @google-cloud/nodejs-repo-tools
    
  2. Then in your code:

    const tools = require('@google-cloud/nodejs-repo-tools');`
    
Language support

Support for various programming languages is added via [build packs][]. A build pack specifies language-specific config and commands that should be used when performing the various Repo Tools tasks. Repo Tools does its best to infer the build pack it should use, but when running a command to can specify a specific build pack with --build-pack [BUILD_PACK] or -b [BUILD_PACK].

Available build packs
Adding a build pack

A build pack can be added by adding a .js file to the src/build_packs directory. This file should export a JavaScript object. You can see the available options by perusing the existing build packs.

Contributing

See CONTRIBUTING.md.

License

Apache Version 2.0

See LICENSE.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.