@ornikar/repo-config 10.1.1 → 10.3.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [10.3.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@10.2.0...@ornikar/repo-config@10.3.0) (2022-11-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency husky to v8.0.2 ([#808](https://github.com/ornikar/shared-configs/issues/808)) ([26f8369](https://github.com/ornikar/shared-configs/commit/26f83693cd23441258c2b59f18a510bf2a6243b4))
12
+
13
+
14
+ ### Features
15
+
16
+ * log errors during ornikar-lint-staged command [no issue] ([#810](https://github.com/ornikar/shared-configs/issues/810)) ([81352c0](https://github.com/ornikar/shared-configs/commit/81352c016051f362718518a680c3d8020830000e))
17
+
18
+
19
+
20
+
21
+
22
+ # [10.2.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@10.1.1...@ornikar/repo-config@10.2.0) (2022-11-03)
23
+
24
+
25
+ ### Features
26
+
27
+ * **deps:** update dependency @pob/pretty-eslint-config to v3 ([#725](https://github.com/ornikar/shared-configs/issues/725)) ([89ccd7d](https://github.com/ornikar/shared-configs/commit/89ccd7da52c277e3e49180530e9de50c4dcbf524))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [10.1.1](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@10.1.0...@ornikar/repo-config@10.1.1) (2022-09-21)
7
34
 
8
35
  **Note:** Version bump only for package @ornikar/repo-config
@@ -11,6 +11,7 @@ lintStaged({
11
11
  .then((passed) => {
12
12
  process.exitCode = passed ? 0 : 1;
13
13
  })
14
- .catch(() => {
14
+ .catch((error) => {
15
+ console.error(error);
15
16
  process.exitCode = 1;
16
17
  });
@@ -30,8 +30,8 @@ module.exports = function createLintStagedConfig(options = {}) {
30
30
  return [
31
31
  'yarn dedupe',
32
32
  packagejsonFilenames.length === 0 ? undefined : `prettier --write ${packagejsonFilenames.join(' ')}`,
33
- isLernaRepo && require.resolve('@ornikar/lerna-config/bin/generate-eslintrc-files.js'),
34
- shouldGenerateTsconfigInLernaRepo && require.resolve('@ornikar/lerna-config/bin/generate-tsconfig-files.js'),
33
+ isLernaRepo && require.resolve('@ornikar/lerna-config/bin/generate-eslintrc-files.mjs'),
34
+ shouldGenerateTsconfigInLernaRepo && require.resolve('@ornikar/lerna-config/bin/generate-tsconfig-files.mjs'),
35
35
  shouldRunCheckPkgScript && 'node ./scripts/check-packagejson.js',
36
36
  'git add yarn.lock .yarn',
37
37
  ].filter(Boolean);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/repo-config",
3
- "version": "10.1.1",
3
+ "version": "10.3.0",
4
4
  "description": "🔧 repo config",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,13 +22,13 @@
22
22
  "ornikar-repo-config-postinstall": "./bin/ornikar-repo-config-postinstall.js"
23
23
  },
24
24
  "dependencies": {
25
- "@commitlint/cli": "17.1.2",
25
+ "@commitlint/cli": "17.2.0",
26
26
  "@ornikar/commitlint-config": "^5.0.0",
27
- "husky": "8.0.1",
27
+ "husky": "8.0.2",
28
28
  "lint-staged": "13.0.3",
29
29
  "prettier-plugin-properties": "0.2.0",
30
30
  "semver": "^7.3.5",
31
31
  "which-pm-runs": "^1.1.0"
32
32
  },
33
- "gitHead": "4cb152faef7a6070e42b98a3afd343c8825f2bd1"
33
+ "gitHead": "ff644cdcade29e287265994253b213e4cd32f765"
34
34
  }