ac-custom-error 2.0.6 → 2.0.9

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 +30 -0
  2. package/package.json +7 -8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## [2.0.9](https://github.com/admiralcloud/ac-custom-error/compare/v2.0.8..v2.0.9) (2026-08-01 10:57:24)
2
+
3
+
4
+ ### Bug Fix
5
+
6
+
7
+ * **App:** Package updates | MP | [3602bc5887a086e6e2277682effe16bac75658d4](https://github.com/admiralcloud/ac-custom-error/commit/3602bc5887a086e6e2277682effe16bac75658d4)
8
+ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9
+ ## [2.0.8](https://github.com/admiralcloud/ac-custom-error/compare/v2.0.7..v2.0.8) (2026-07-12 07:18:09)
10
+
11
+
12
+ ### Bug Fix
13
+
14
+
15
+ * **App:** Package updates | MP | [429ff22d704156593ecc1faf2e4d116bff507f8b](https://github.com/admiralcloud/ac-custom-error/commit/429ff22d704156593ecc1faf2e4d116bff507f8b)
16
+ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17
+ ## [2.0.7](https://github.com/admiralcloud/ac-custom-error/compare/v2.0.6..v2.0.7) (2026-06-22 15:08:30)
18
+
19
+
20
+ ### Bug Fix
21
+
22
+
23
+ * **App:** Package updates | MP | [f68adf7e5845e4c10910fc3a5642912507bd3dda](https://github.com/admiralcloud/ac-custom-error/commit/f68adf7e5845e4c10910fc3a5642912507bd3dda)
24
+ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25
+ ### Chores
26
+
27
+
28
+ * **App:** Remove nyc | MP | [c6373f294be7ecfbff40a1e089322291ff936887](https://github.com/admiralcloud/ac-custom-error/commit/c6373f294be7ecfbff40a1e089322291ff936887)
29
+ Remove nyc
30
+ Related issues:
1
31
  ## [2.0.6](https://github.com/admiralcloud/ac-custom-error/compare/v2.0.5..v2.0.6) (2026-05-18 19:09:03)
2
32
 
3
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac-custom-error",
3
- "version": "2.0.6",
3
+ "version": "2.0.9",
4
4
  "description": "Custom NodeJS error with error code and additional info",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/AdmiralCloud/ac-custom-error",
@@ -9,14 +9,12 @@
9
9
  "devDependencies": {
10
10
  "ac-semantic-release": "^1.0.2",
11
11
  "chai": "^4.5.0",
12
- "eslint": "^10.4.0",
13
- "globals": "^17.6.0",
14
- "mocha": "^11.7.5",
15
- "nyc": "^18.0.0"
12
+ "eslint": "^10.8.0",
13
+ "globals": "^17.8.0",
14
+ "mocha": "^11.7.6"
16
15
  },
17
16
  "scripts": {
18
- "test": "mocha --reporter spec",
19
- "coverage": "nyc yarn run test"
17
+ "test": "mocha --reporter spec"
20
18
  },
21
19
  "engines": {
22
20
  "node": ">=20.0.0"
@@ -24,7 +22,8 @@
24
22
  "resolutions": {
25
23
  "mocha/diff": "^8.0.3",
26
24
  "minimatch": "^10.2.1",
27
- "mocha/serialize-javascript": "^7.0.3"
25
+ "mocha/serialize-javascript": "^7.0.3",
26
+ "mocha/js-yaml": "^4.2.0"
28
27
  },
29
28
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
30
29
  }