@ornikar/repo-config 8.5.0 → 8.6.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
+ # [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)
7
+
8
+
9
+ ### Features
10
+
11
+ * **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))
12
+
13
+
14
+
15
+
16
+
17
+ ## [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)
18
+
19
+ **Note:** Version bump only for package @ornikar/repo-config
20
+
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+ **Note:** Version bump only for package @ornikar/repo-config
28
+
29
+
30
+
31
+
32
+
6
33
  # [8.5.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.4.0...@ornikar/repo-config@8.5.0) (2022-06-21)
7
34
 
8
35
 
@@ -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.0",
3
+ "version": "8.6.0",
4
4
  "description": "🔧 repo config",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,14 +22,14 @@
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
- "lint-staged": "13.0.2",
28
+ "lint-staged": "13.0.3",
29
29
  "prettier-plugin-properties": "0.1.0",
30
30
  "semver": "^7.3.5",
31
31
  "which-pm-runs": "^1.1.0",
32
32
  "yarn-deduplicate": "3.1.0"
33
33
  },
34
- "gitHead": "92e4e33ec16b343e2b5f10425317d6e44348b8d9"
34
+ "gitHead": "f66cae9ba11a182aa86da824cf578b5c36009158"
35
35
  }