@ornikar/repo-config 8.3.0 → 8.4.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/.eslintrc.json CHANGED
@@ -1,4 +1,8 @@
1
1
  {
2
2
  "root": true,
3
- "extends": ["@ornikar/eslint-config/node"]
3
+ "extends": ["@ornikar/eslint-config/node"],
4
+ "rules": {
5
+ "security/detect-non-literal-require": "off",
6
+ "security/detect-non-literal-fs-filename": "off"
7
+ }
4
8
  }
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
+ # [8.4.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.3.2...@ornikar/repo-config@8.4.0) (2022-06-20)
7
+
8
+
9
+ ### Features
10
+
11
+ * **deps:** update dependency husky to v8 ([#724](https://github.com/ornikar/shared-configs/issues/724)) ([9953050](https://github.com/ornikar/shared-configs/commit/995305060069efc4e74720c3cbc5e5d56d4f5507))
12
+
13
+
14
+
15
+
16
+
17
+ ## [8.3.2](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.3.1...@ornikar/repo-config@8.3.2) (2022-04-26)
18
+
19
+ **Note:** Version bump only for package @ornikar/repo-config
20
+
21
+
22
+
23
+
24
+
25
+ ## [8.3.1](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.3.0...@ornikar/repo-config@8.3.1) (2022-04-22)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * typo in pre-push script ([ff75c9d](https://github.com/ornikar/shared-configs/commit/ff75c9dde4fe26b35c0a5954a50c55e02ad570a1))
31
+
32
+
33
+
34
+
35
+
6
36
  # [8.3.0](https://github.com/ornikar/shared-configs/compare/@ornikar/repo-config@8.2.1...@ornikar/repo-config@8.3.0) (2022-04-22)
7
37
 
8
38
 
@@ -143,7 +143,7 @@ fi
143
143
  if (shouldRunTest()) {
144
144
  prePushHookPreCommands.push(
145
145
  '# autodetect main branch (usually master or main)',
146
- 'mainBranch = $(git remote show origin | grep "HEAD branch" | cut - d\' \' - f5)',
146
+ 'mainBranch=$(git remote show origin | grep "HEAD branch" | cut -d\' \' -f5)',
147
147
  '',
148
148
  );
149
149
  prePushHook.push(`CI=true ${pm.name} test --changedSince=origin/$mainBranch`);
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@ornikar/repo-config",
3
- "version": "8.3.0",
3
+ "version": "8.4.0",
4
4
  "description": "🔧 repo config",
5
- "repository": "ornikar/shared-configs",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/ornikar/shared-configs.git",
8
+ "directory": "@ornikar/repo-config"
9
+ },
6
10
  "license": "ISC",
7
11
  "engines": {
8
12
  "node": ">=14.17.5"
@@ -18,14 +22,14 @@
18
22
  "ornikar-repo-config-postinstall": "./bin/ornikar-repo-config-postinstall.js"
19
23
  },
20
24
  "dependencies": {
21
- "@commitlint/cli": "16.2.3",
22
- "@ornikar/commitlint-config": "^4.0.3",
23
- "husky": "7.0.4",
24
- "lint-staged": "12.3.8",
25
+ "@commitlint/cli": "16.3.0",
26
+ "@ornikar/commitlint-config": "^4.0.4",
27
+ "husky": "8.0.1",
28
+ "lint-staged": "13.0.2",
25
29
  "prettier-plugin-properties": "0.1.0",
26
30
  "semver": "^7.3.5",
27
31
  "which-pm-runs": "^1.1.0",
28
32
  "yarn-deduplicate": "3.1.0"
29
33
  },
30
- "gitHead": "84a5569678aba249caa5cc23f6bd3e8e826ff3f3"
34
+ "gitHead": "ab2d4c9d4c9b8c9c610eb592330cfa99ec5c21fc"
31
35
  }