@availity/dockyard 1.0.7 → 2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ # [2.0.0](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.7...@availity/dockyard@2.0.0) (2024-07-29)
6
+
7
+
8
+ ### chore
9
+
10
+ * **dockyard:** upgrade to node 18 and 20 ([7a0d4da](https://github.com/Availity/sdk-js/commit/7a0d4daa7a1e1880049e2076893e4ff7b13571ba))
11
+
12
+
13
+ ### BREAKING CHANGES
14
+
15
+ * **dockyard:** drop support for node 14 and 16
16
+
17
+
18
+
5
19
  ## [1.0.7](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.6...@availity/dockyard@1.0.7) (2024-07-29)
6
20
 
7
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/dockyard",
3
- "version": "1.0.7",
3
+ "version": "2.0.0",
4
4
  "description": "Convert yup schema to a friendly docs object",
5
5
  "keywords": [
6
6
  "yup",
@@ -21,6 +21,9 @@
21
21
  "main": "./dist/index.js",
22
22
  "module": "./dist/index.mjs",
23
23
  "types": "./dist/index.d.ts",
24
+ "engines": {
25
+ "node": "^18.0.0 || ^20.0.0"
26
+ },
24
27
  "scripts": {
25
28
  "build": "tsup src/index.js --format esm,cjs --dts",
26
29
  "dev": "tsup src/index.js --format esm,cjs --watch --dts",