1.5.1 • Published 3 years ago

eisd v1.5.1

Weekly downloads
121
License
Apache-2.0
Repository
github
Last release
3 years ago

Execute In SubDirectories

Execute your favorite command in SubDirectories. Use it like: eisd <command> [options] <directories...> (Example: eisd 'yarn build' --async client server scripts)

npm version code style: prettier

Click here for the yarn install version!

Click here for the npm install version!

Usage

  Usage: eisd <command> [options] <directories...>

  Options:
    -a, --async                             Execute commands async across all folders, output will be a mess
    -e, --allowErrors                       Allow errors (at default we stop when there is one). NOTE: always true when in async mode
    -y, --yarnWorkspaces                    Use yarn workspaces for the directories to run the command in
    -d, --envDirectories [environment_key]  Environment variable that contains the directories, for example a package.json config var would be: npm_config_myVar
    -v, --verbose                           More verbose output
    -h, --help                              output usage information

Examples

Cli: eisd 'yarn install' --ignoreRegex '^warning' --async client server testSetup/mockServer

Package.json:

{
  "name": "Root",
  "version": "0.0.1",
  "description": "mainFolder",
  "scripts": {
    "postinstall": "yisd client server",
    "build": "eisd 'yarn build' client server scripts",
    "lint": "eisd 'npm run lint' -d npm_package_config_components"
  },
  "config": {
    "components": "client server scripts"
  }
}

Compatibility

Works on Linux and Mac, should also work on Windows (will test it soon). If not, create an issue and I will fix it. :-)

1.5.1

3 years ago

1.5.0

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago