0.2.0 • Published 6 years ago

gregarious v0.2.0

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

gregarious

call nested npm scripts. This is similar to lerna but with "no string attached".

Definition of gregarious

  1. a. tending to associate with others of one's kind : social gregarious animals
    b. marked by or indicating a liking for companionship : sociable is friendly, outgoing, and gregarious
    c. of or relating to a social group
  2. a. of a plant : growing in a cluster or a colony
    b. living in contiguous nests but not forming a true colony —used especially of wasps and bees

-- www.merriam-webster.com --

Installation

npm install -g gregarious

Usage

cd my-repo
greg run test

Scopes

greg run test --scope packages/foo
greg run test --scope packages/foo --scope packages/bar

Missing scripts

Gregarious will simply skip missing scripts.

greg run bar

See the example packages below

package.json

{
  "name": "my-repo",
  "version": "1.0.0",
  "workspaces": ["packages/*"],
  "private": true
}

packages/foo/package.json

{
  "name": "my-repo/foo",
  "version": "0.1.0",
  "scripts": {
    "foo": "echo \"called foo from foo\" >> output.txt"
  },
  "publishConfig": {
    "access": "public"
  }
}

packages/bar/package.json

{
  "name": "my-repo/bar",
  "version": "0.1.0",
  "scripts": {
    "foo": "echo \"called foo from bar\" >> output.txt",
    "bar": "echo \"called bar from bar\" >> output.txt"
  },
  "publishConfig": {
    "access": "public"
  }
}