@ornikar/repo-config 6.0.2 → 6.1.2

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,36 @@
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
+ ## [6.1.2](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@6.1.1...@ornikar/repo-config@6.1.2) (2021-11-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **repo-config:** allow repo to have no tsconfig.build.json for prettier [no issue] ([#545](https://github.com/ornikar/shared-configs/issues/545)) ([218410d](https://github.com/ornikar/shared-configs/commit/218410df8b2014d8a9789f58f582a12caaaaceb3))
12
+
13
+
14
+
15
+
16
+
17
+ ## [6.1.1](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@6.1.0...@ornikar/repo-config@6.1.1) (2021-11-18)
18
+
19
+ **Note:** Version bump only for package @ornikar/repo-config
20
+
21
+
22
+
23
+
24
+
25
+ # [6.1.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@6.0.2...@ornikar/repo-config@6.1.0) (2021-10-29)
26
+
27
+
28
+ ### Features
29
+
30
+ * update commitlint monorepo (major) ([#523](https://github.com/ornikar/shared-configs/issues/523)) ([f36a143](https://github.com/ornikar/shared-configs/commit/f36a143bd6a688ee13945d8520d265c29cc702ab))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [6.0.2](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@6.0.1...@ornikar/repo-config@6.0.2) (2021-10-25)
7
37
 
8
38
 
@@ -29,7 +29,8 @@ module.exports = function createLintStagedConfig(options = {}) {
29
29
  'git add yarn.lock',
30
30
  isLernaRepo && require.resolve('@ornikar/lerna-config/bin/generate-eslintrc-files.js'),
31
31
  shouldGenerateTsconfigInLernaRepo && require.resolve('@ornikar/lerna-config/bin/generate-tsconfig-files.js'),
32
- shouldGenerateTsconfigInLernaRepo && 'prettier --write **/tsconfig.json **/tsconfig.build.json',
32
+ shouldGenerateTsconfigInLernaRepo &&
33
+ 'prettier --write --no-error-on-unmatched-pattern **/tsconfig.json **/tsconfig.build.json',
33
34
  shouldGenerateTsconfigInLernaRepo && 'git add **/tsconfig.json **/tsconfig.build.json',
34
35
  ].filter(Boolean);
35
36
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/repo-config",
3
- "version": "6.0.2",
3
+ "version": "6.1.2",
4
4
  "description": "repo config",
5
5
  "repository": "ornikar/shared-configs",
6
6
  "license": "ISC",
@@ -14,13 +14,13 @@
14
14
  "ornikar-repo-config-postinstall": "./bin/ornikar-repo-config-postinstall.js"
15
15
  },
16
16
  "dependencies": {
17
- "@commitlint/cli": "11.0.0",
18
- "@ornikar/commitlint-config": "^3.2.1",
17
+ "@commitlint/cli": "13.2.1",
18
+ "@ornikar/commitlint-config": "^3.3.0",
19
19
  "husky": "7.0.4",
20
- "lint-staged": "10.5.4",
20
+ "lint-staged": "11.2.6",
21
21
  "semver": "^7.3.5",
22
22
  "which-pm-runs": "^1.0.0",
23
23
  "yarn-deduplicate": "3.1.0"
24
24
  },
25
- "gitHead": "1d4511b4ff60eac17eb0df39ff4fb8790fe70b92"
25
+ "gitHead": "dec70abb4db63ba86f2695f3b40059f64a2e2e32"
26
26
  }