Releases: guidsdo/eisd
Releases · guidsdo/eisd
Eisd 1.5.1
Eisd 1.5.0
Release notes:
- Added support for yarn workspaces! Use:
-y
or--yarnWorkspaces
to use it!
Eisd 1.4.0
Release notes:
Thanks to @bvanreeven, you can now choose wether you want the extra text to be shown or not. By default this is disabled. Use -v
or --verbose
to see all the output when running a command.
Eisd 1.3.0
Release notes:
We now allow you to pass the name of an environment variable that can contain the directories you want to use.
Example package.json:
{
"scripts": {
"lint": "eisd 'npm run lint' -d npm_package_config_components"
},
"config": {
"components": "client server scripts"
}
}
Eisd 1.2.1
Release notes:
- Bugfix: only finish up executions when really done.
Eisd 1.2.0
Release notes:
- Remove ignore pattern and use normal exit code.
Eisd 1.1.0
- Add option to ignore certain error output as error, with a regex. This was needed for yarn, where warnings are spit out as errors. Use
--ignoreRegex '^warning'
for example.
Eisd 1.0.0
Release notes:
- Added async support!
- Execute all commands in a separate worker to fix issues where the file system in nodejs was confused.
- Actually break on errors (unless you don't want it:
--allowErrors
)