Socket
Socket
Sign inDemoInstall

@arshaw/yall

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arshaw/yall

Run several npm scripts in parallel or in sequence forwarding the options in a yarn-friendly manner


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

yall-scripts

npm

Run several npm scripts in parallel or in sequence forwarding the options in a yarn-friendly manner, using the yall CLI tool.

Installation

$ yarn add yall-scripts --dev

Usage

$ yall [options] [tasks] [forward-options]

[tasks] - npm script names and matching patterns

Options:
  -s, --serial, --sequential, --sequence  // run tasks in sequence
  -p, --parallel                          // run tasks in parallel
  -w, --workspaces                        // run tasks in all child workspaces
  -q, --quiet                             // don't print verbose workspace information
  -v, --version                           // print version
  -h, --help                              // print help

Run tasks in sequence (default):

$ yall clean lint test build
$ yall -s clean lint test build
$ yall --serial clean lint test build
$ yall --sequential clean lint test build

Run tasks in parallel:

$ yall -p clean lint test build
$ yall --parallel clean lint test build

Run tasks in all child workspaces:

$ yall -w clean lint test build
$ yall --workspaces clean lint test build

Combine multiple options:

$ yall -pwq clean lint test build
$ yall --parallel --workspaces --quiet clean lint test build

Run tasks using matching patterns:

$ yall lint:*    // run lint:js, lint:css, lint:js:bin, lint:js:lib
$ yall lint:*:*  // run lint:js:bin, lin:js:lib

Forward options to each task:

$ yall -p start:mockBackend start:devServer --watch
$ yall -p start:* --watch
$ yall --parallel lint:* --fix

Run the yall-based npm script forwarding the option in a yarn-friendly manner:

// package.json
"scripts": {
  "lint:js": "eslint ./src",
  "lint:css": "stylelint ./src",
  "lint": "yall --parallel lint:*"
}

// console
$ yarn lint --fix

Note that we are using no extra -- sequence here to forward the --fix option to each of the matching scripts. As a result we will see no annoying yarn warning you could get used to when using other tools:

warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.

You're also safe to use script names that collide with yarn CLI commands:

// package.json
"scripts": {
  "audit": "yarn-audit-ci",
  "check": "eslint ./src",
  "test": "jest ./src",
  "all": "yall audit check test"
}

// console
$ yarn all

Keywords

FAQs

Package last updated on 22 Sep 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc