Socket
Socket
Sign inDemoInstall

arbor

Package Overview
Dependencies
62
Maintainers
4
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    arbor

A simple CLI tool to build projects across several platforms in parallel


Version published
Maintainers
4
Install size
6.42 MB
Created

Readme

Source

Arbor

Build Status npm version

A CLI tool to build projects across several platforms in parallel.

Arbor

Run npm install -g arbor to install. Create a arbor.json file with specified tasks. Run arbor run build command, this will run the build task of all project recursively in the directory. Ex: cd repos && arbor run build builds all of the repos/projects in repos directory.

Example arbor.json

{
  "name": "My Node Project",
  "tasks": {
    "build": "npm run build",
    "test": "npm run test"
  }
}
{
  "name": "My .NET Project",
  "tasks": {
    "build": "msbuild",
  }
}

Multiple projects per configuration

[
  {
    "name": "product api",
    "tasks": {
      "build": "msbuild /v:q",
      "build--prod": "msbuild /p:configuration=release /v:q"
    }
  },
  {
    "name": "product website",
    "tasks": {
      "build": [
        { "status": "installing", "command": "npm install", "cwd": "./web" },
        { "status": "building", "command": "npm run build", "cwd": "./web" }
      ],
      "build--prod": [
        { "status": "installing", "command": "npm install", "cwd": "./web" },
        { "status": "building", "command": "npm run build--prod", "cwd": "./web" }
      ]
    }
  }
]

CLI

Keywords

FAQs

Last updated on 14 Jun 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc