aberlaas-precommit 2.22.3 → 2.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ export const commands = {
4
4
  lintCircleci: 'yarn run lint --circleci',
5
5
  lintJson: 'yarn run lint:fix --json',
6
6
  lintJs: 'yarn run lint:fix --js',
7
- testJs: 'yarn run test --failFast --related',
7
+ testJs: 'yarn run test --fail-fast --related',
8
8
  compressPng: 'yarn run compress --png',
9
9
  readme: 'yarn run aberlaas readme --add-to-git',
10
10
  };
package/lib/main.js CHANGED
@@ -33,7 +33,7 @@ export async function run(cliArgs = {}) {
33
33
  }
34
34
 
35
35
  // Throw error if can't commit
36
- throw __.firostError('ABERLAAS_PRECOMMIT_LINT_FAILED', errors);
36
+ throw __.firostError('ABERLAAS_PRECOMMIT_LINT_FAILED', errors.join('\n'));
37
37
  }
38
38
 
39
39
  __ = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aberlaas-precommit",
3
- "version": "2.22.3",
3
+ "version": "2.23.0",
4
4
  "type": "module",
5
5
  "description": "aberlaas precommit helper: Sanitize and cleanup on commit",
6
6
  "author": "Tim Carry <tim@pixelastic.com>",
@@ -26,8 +26,8 @@
26
26
  "micromatch": "4.0.8"
27
27
  },
28
28
  "dependencies": {
29
- "aberlaas-helper": "2.22.3",
30
- "firost": "5.5.1",
29
+ "aberlaas-helper": "2.23.0",
30
+ "firost": "5.5.2",
31
31
  "lint-staged": "16.2.7"
32
32
  },
33
33
  "scripts": {