@availity/dockyard 1.0.6 → 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.
- package/CHANGELOG.md +18 -0
- package/package.json +5 -2
- package/project.json +6 -7
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.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
|
+
|
|
19
|
+
## [1.0.7](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.6...@availity/dockyard@1.0.7) (2024-07-29)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
5
23
|
## [1.0.6](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.5...@availity/dockyard@1.0.6) (2024-05-30)
|
|
6
24
|
|
|
7
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/dockyard",
|
|
3
|
-
"version": "
|
|
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",
|
|
@@ -34,7 +37,7 @@
|
|
|
34
37
|
},
|
|
35
38
|
"devDependencies": {
|
|
36
39
|
"tsup": "^7.2.0",
|
|
37
|
-
"typescript": "^5.
|
|
40
|
+
"typescript": "^5.5.4",
|
|
38
41
|
"yup": "^0.32.11"
|
|
39
42
|
},
|
|
40
43
|
"publishConfig": {
|
package/project.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"name": "@availity/dockyard",
|
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
3
4
|
"projectType": "library",
|
|
4
5
|
"targets": {
|
|
5
6
|
"test": {
|
|
6
7
|
"executor": "@nx/jest:jest",
|
|
7
|
-
"outputs": ["coverage/dockyard"],
|
|
8
|
+
"outputs": ["{workspaceRoot}/coverage/dockyard"],
|
|
8
9
|
"options": {
|
|
9
|
-
"jestConfig": "packages/dockyard/jest.config.js"
|
|
10
|
-
"passWithNoTests": true
|
|
10
|
+
"jestConfig": "packages/dockyard/jest.config.js"
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"version": {
|
|
@@ -15,16 +15,15 @@
|
|
|
15
15
|
"options": {
|
|
16
16
|
"preset": "angular",
|
|
17
17
|
"commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
|
|
18
|
-
"tagPrefix": "
|
|
18
|
+
"tagPrefix": "{projectName}@",
|
|
19
19
|
"baseBranch": "master",
|
|
20
20
|
"trackDeps": true
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"lint": {
|
|
24
|
-
"executor": "@nx/
|
|
24
|
+
"executor": "@nx/eslint:lint",
|
|
25
25
|
"options": {
|
|
26
26
|
"eslintConfig": ".eslintrc.yaml",
|
|
27
|
-
"lintFilePatterns": ["packages/dockyard/**/*.{js,ts}"],
|
|
28
27
|
"silent": false,
|
|
29
28
|
"fix": false,
|
|
30
29
|
"cache": true,
|