@ornikar/repo-config 8.5.1 → 9.0.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,41 @@
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
+ # [9.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.6.0...@ornikar/repo-config@9.0.0) (2022-08-10)
7
+
8
+
9
+ ### Features
10
+
11
+ * **prettier-config:** use overrides to configure dotenv ARCH-1558 ([#764](https://github.com/ornikar/shared-configs/issues/764)) ([d35b376](https://github.com/ornikar/shared-configs/commit/d35b376525daa154970d40bf9a2e33002269be93))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * **prettier-config:** repo-config requires latest prettier-config to work properly
17
+
18
+
19
+
20
+
21
+
22
+ # [8.6.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.5.2...@ornikar/repo-config@8.6.0) (2022-08-05)
23
+
24
+
25
+ ### Features
26
+
27
+ * **repo-config:** skip husky install on ci [no issue] ([#762](https://github.com/ornikar/shared-configs/issues/762)) ([64a4123](https://github.com/ornikar/shared-configs/commit/64a41230640849359c9e06acc80def3a6f122bc1))
28
+
29
+
30
+
31
+
32
+
33
+ ## [8.5.2](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.5.1...@ornikar/repo-config@8.5.2) (2022-08-05)
34
+
35
+ **Note:** Version bump only for package @ornikar/repo-config
36
+
37
+
38
+
39
+
40
+
6
41
  ## [8.5.1](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.5.0...@ornikar/repo-config@8.5.1) (2022-06-28)
7
42
 
8
43
  **Note:** Version bump only for package @ornikar/repo-config
@@ -3,5 +3,4 @@
3
3
  # exit when any command fails
4
4
  set -e
5
5
 
6
- prettier --check .
7
- prettier --parser dot-properties --key-separator '=' --no-single-quote --check '**/.env*'
6
+ prettier --check --no-error-on-unmatched-pattern "$@" . '**/.env*' '**/*.env'
@@ -3,5 +3,4 @@
3
3
  # exit when any command fails
4
4
  set -e
5
5
 
6
- prettier --write .
7
- prettier --parser dot-properties --key-separator '=' --no-single-quote --write '**/.env*'
6
+ prettier --write --no-error-on-unmatched-pattern "$@" . '**/.env*' '**/*.env'
@@ -162,5 +162,8 @@ fi
162
162
  ensureHookDeleted('pre-push');
163
163
  }
164
164
 
165
- husky.install('.husky');
165
+ // skip install husky on CI as we don't need it
166
+ if (!process.env.CI) {
167
+ husky.install('.husky');
168
+ }
166
169
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/repo-config",
3
- "version": "8.5.1",
3
+ "version": "9.0.0",
4
4
  "description": "🔧 repo config",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,8 +22,8 @@
22
22
  "ornikar-repo-config-postinstall": "./bin/ornikar-repo-config-postinstall.js"
23
23
  },
24
24
  "dependencies": {
25
- "@commitlint/cli": "16.3.0",
26
- "@ornikar/commitlint-config": "^4.0.4",
25
+ "@commitlint/cli": "17.0.3",
26
+ "@ornikar/commitlint-config": "^4.0.5",
27
27
  "husky": "8.0.1",
28
28
  "lint-staged": "13.0.3",
29
29
  "prettier-plugin-properties": "0.1.0",
@@ -31,5 +31,5 @@
31
31
  "which-pm-runs": "^1.1.0",
32
32
  "yarn-deduplicate": "3.1.0"
33
33
  },
34
- "gitHead": "82cd376edfd082417a3a16adf6d4e8d166568281"
34
+ "gitHead": "643b87f811c06b6154adcdcefd87595b90880f3a"
35
35
  }