npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yarn-plugin-rungex

v1.3.0

Published

A Yarn plugin that can be used to run multiple package.json scripts using Regex.

Downloads

19

Readme

yarn-plugin-rungex

All Contributors

Release

A Yarn Berry plugin that can be used to run multiple package.json scripts with Regex.

Install

yarn plugin import https://raw.githubusercontent.com/krshnpatel/rungex/main/bundles/@yarnpkg/plugin-rungex.js

Usage

yarn rungex [-c,--ci] [-p,--parallel] [-sw,--starts-with] [-ew,--ends-with] <scriptMatcher>
yarn rungex --help

Examples

The following part of a package.json file will be used as a reference for all examples in this section:

{
    // ... other fields
    "scripts": {
        "build:dev": "build app dev",
        "build:prod": "build app prod",
        "lint": "eslint src/",
        "lint:fix": "eslint src/ --fix",
        "start": "start app",
        "start:dev": "start app dev",
        "taste": "run taste",
        "test:e2e": "run e2e tests",
        "test:integration": "run integration tests",
        "test:unit": "run unit tests",
        "update:local": "update local app"
    }
    // ... more fields
}

NOTE: By default, the rungex command will always prompt the user whether they want to run the matched scripts or not. However, the prompt can be skipped by passing in the -c or the --ci option.

Matching scripts

Run all scripts matching the Regex: "lint.*". The following command will match the "lint" and "lint:fix" scripts in the package.json above.

yarn rungex "lint.*"

Run all scripts that start with "test". The following commands will match the "test:unit", "test:integration", and "test:e2e" scripts.

yarn rungex "test" -sw
# OR
yarn rungex "test" --starts-with

Run all scripts that end with "dev". The following commands will match the "build:dev" and "start:dev" scripts.

yarn rungex "dev" -ew
# OR
yarn rungex "dev" --ends-with

Other options

NOTE: The following options can be used as standalone options or they can be combined with other options.

Run all matching scripts in parallel that start with "test". The following commands will match the "test:unit", "test:integration", and "test:e2e" scripts and then run them in parallel to each other if the user chooses to run the scripts.

yarn rungex "test" -p -sw
# OR
yarn rungex "test" --parallel --starts-with

Run all scripts in parallel without prompting the user for any input. The following commands will match the "build:dev" and "build:prod" scripts. Both of those scripts will be run in parallel without any user prompt.

yarn rungex "build" -c -p
# OR
yarn rungex "build" --ci --parallel

Uninstall

yarn plugin remove @yarnpkg/plugin-rungex

Contributors ✨

This project follows the all-contributors specification. Contributions of any kind welcome!

License

MIT