Skip to content

Releases: guidsdo/eisd

Eisd 1.5.1

11 Nov 14:23
Compare
Choose a tag to compare

Release notes:

  • Update dependencies
  • Fix Github url for npm

Eisd 1.5.0

19 Oct 11:18
Compare
Choose a tag to compare

Release notes:

  • Added support for yarn workspaces! Use: -y or --yarnWorkspaces to use it!

Eisd 1.4.0

29 Jan 09:10
Compare
Choose a tag to compare

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

28 Jan 16:29
Compare
Choose a tag to compare

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

25 Sep 08:07
Compare
Choose a tag to compare

Release notes:

  • Bugfix: only finish up executions when really done.

Eisd 1.2.0

28 Jun 09:39
Compare
Choose a tag to compare

Release notes:

  • Remove ignore pattern and use normal exit code.

Eisd 1.1.0

09 Jun 20:55
Compare
Choose a tag to compare
  • 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

09 Jun 20:54
Compare
Choose a tag to compare

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)