@halospv3/hce.shared-config 3.5.0 → 3.5.1-develop.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [3.5.1-develop.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.5.0...v3.5.1-develop.1) (2026-04-03)
2
+
3
+ ### Bug Fixes
4
+
5
+ * run `postinstall` only when `./.git/` exists ([78d37f2](https://github.com/HaloSPV3/HCE.Shared/commit/78d37f283df94f1d391d98b60d34c8ad426931f5)), closes [#663](https://github.com/HaloSPV3/HCE.Shared/issues/663)
6
+
1
7
  ## [3.5.0](https://github.com/HaloSPV3/HCE.Shared/compare/v3.4.8...v3.5.0) (2026-04-03)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halospv3/hce.shared-config",
3
- "version": "3.5.0",
3
+ "version": "3.5.1-develop.1",
4
4
  "description": "Automate commit message quality, changelogs, and CI/CD releases. Its `main` entry point is a Semantic Release config. Functions and classes are exposed for customization. An ESLint config, a Commitlint config, and addl. resources for .NET projects are also provided.",
5
5
  "keywords": [
6
6
  "semantic-release",
@@ -36,6 +36,7 @@
36
36
  "type": "git",
37
37
  "url": "git+https://github.com/HaloSPV3/HCE.Shared.git"
38
38
  },
39
+ "script-shell": "sh",
39
40
  "scripts": {
40
41
  "build": "tsdown",
41
42
  "build:clean": "npm run clean-build",
@@ -47,7 +48,7 @@
47
48
  "lint:check": "eslint --cache .",
48
49
  "eslint-inspector": "eslint --inspect-config",
49
50
  "prepack": "npm run clean && npm run build",
50
- "postinstall": "patch-package && husky",
51
+ "postinstall": "([ -e .git/ ] && patch-package && husky) || exit 0",
51
52
  "presemantic-release": "npm pack",
52
53
  "semantic-release": "semantic-release",
53
54
  "pretest": "npm run build && npm run test:cacheSampleProjects",