@availity/dockyard 1.0.7 → 2.0.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.
- package/CHANGELOG.md +18 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +2 -2
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.1](https://github.com/Availity/sdk-js/compare/@availity/dockyard@2.0.0...@availity/dockyard@2.0.1) (2025-03-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# [2.0.0](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.7...@availity/dockyard@2.0.0) (2024-07-29)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### chore
|
|
13
|
+
|
|
14
|
+
* **dockyard:** upgrade to node 18 and 20 ([7a0d4da](https://github.com/Availity/sdk-js/commit/7a0d4daa7a1e1880049e2076893e4ff7b13571ba))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* **dockyard:** drop support for node 14 and 16
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
5
23
|
## [1.0.7](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.6...@availity/dockyard@1.0.7) (2024-07-29)
|
|
6
24
|
|
|
7
25
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export { }
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export { }
|
package/dist/index.js
CHANGED
|
@@ -42,11 +42,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
42
42
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
43
43
|
|
|
44
44
|
// src/index.js
|
|
45
|
-
var
|
|
46
|
-
__export(
|
|
47
|
-
default: () =>
|
|
45
|
+
var index_exports = {};
|
|
46
|
+
__export(index_exports, {
|
|
47
|
+
default: () => index_default
|
|
48
48
|
});
|
|
49
|
-
module.exports = __toCommonJS(
|
|
49
|
+
module.exports = __toCommonJS(index_exports);
|
|
50
50
|
var import_get = __toESM(require("lodash/get"));
|
|
51
51
|
var import_set = __toESM(require("lodash/set"));
|
|
52
52
|
var addDelimiter = (a, b, { underscore = false } = {}) => underscore ? a ? `${a}.${b}._${b}` : `${b}._${b}` : a ? `${a}.${b}` : `${b}`;
|
|
@@ -139,4 +139,4 @@ var getRules = (validation, { compileRequiredFields = false, excludeOneOf = fals
|
|
|
139
139
|
const description = validation.describe();
|
|
140
140
|
return buildRules(description.fields, "", { compileRequiredFields, excludeOneOf, excludeTypes });
|
|
141
141
|
};
|
|
142
|
-
var
|
|
142
|
+
var index_default = getRules;
|
package/dist/index.mjs
CHANGED
|
@@ -108,7 +108,7 @@ var getRules = (validation, { compileRequiredFields = false, excludeOneOf = fals
|
|
|
108
108
|
const description = validation.describe();
|
|
109
109
|
return buildRules(description.fields, "", { compileRequiredFields, excludeOneOf, excludeTypes });
|
|
110
110
|
};
|
|
111
|
-
var
|
|
111
|
+
var index_default = getRules;
|
|
112
112
|
export {
|
|
113
|
-
|
|
113
|
+
index_default as default
|
|
114
114
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/dockyard",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
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",
|
|
@@ -33,7 +36,7 @@
|
|
|
33
36
|
"lodash": "^4.17.21"
|
|
34
37
|
},
|
|
35
38
|
"devDependencies": {
|
|
36
|
-
"tsup": "^
|
|
39
|
+
"tsup": "^8.4.0",
|
|
37
40
|
"typescript": "^5.5.4",
|
|
38
41
|
"yup": "^0.32.11"
|
|
39
42
|
},
|