@availity/dockyard 1.0.0 → 1.0.3
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 +17 -0
- package/jest.config.js +3 -7
- package/package.json +4 -3
- package/project.json +16 -0
- package/.eslintrc.yml +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.0.3](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.2...@availity/dockyard@1.0.3) (2022-06-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [1.0.2](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.1...@availity/dockyard@1.0.2) (2022-05-24)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [1.0.1](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.0...@availity/dockyard@1.0.1) (2022-04-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* add browser field for output ([0ce7170](https://github.com/Availity/sdk-js/commit/0ce717075a82675b8707e4db0cc07cd4af370f3d))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
5
22
|
# [1.0.0](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.0-alpha.3...@availity/dockyard@1.0.0) (2022-04-28)
|
|
6
23
|
|
|
7
24
|
|
package/jest.config.js
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
+
const global = require('../../jest.config');
|
|
2
|
+
|
|
1
3
|
module.exports = {
|
|
4
|
+
...global,
|
|
2
5
|
displayName: 'dockyard',
|
|
3
|
-
preset: '../../jest.preset.js',
|
|
4
|
-
globals: {
|
|
5
|
-
'ts-jest': {
|
|
6
|
-
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
7
|
-
},
|
|
8
|
-
},
|
|
9
6
|
coverageDirectory: '../../coverage/dockyard',
|
|
10
|
-
coverageReporters: ['json'],
|
|
11
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/dockyard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Convert yup schema to a friendly docs object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yup",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"author": "Greg Martin <greg.martin@availity.com>",
|
|
20
|
+
"browser": "./dist/index.js",
|
|
20
21
|
"main": "./dist/index.js",
|
|
21
22
|
"module": "./dist/index.mjs",
|
|
22
23
|
"types": "./dist/index.d.ts",
|
|
@@ -33,8 +34,8 @@
|
|
|
33
34
|
"lodash": "^4.17.21"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
|
-
"tsup": "^5.
|
|
37
|
-
"typescript": "^4.
|
|
37
|
+
"tsup": "^5.12.8",
|
|
38
|
+
"typescript": "^4.6.4",
|
|
38
39
|
"yup": "^0.32.11"
|
|
39
40
|
},
|
|
40
41
|
"publishConfig": {
|
package/project.json
CHANGED
|
@@ -18,6 +18,22 @@
|
|
|
18
18
|
"tagPrefix": "@availity/${projectName}@",
|
|
19
19
|
"baseBranch": "master"
|
|
20
20
|
}
|
|
21
|
+
},
|
|
22
|
+
"lint": {
|
|
23
|
+
"executor": "@nrwl/linter:eslint",
|
|
24
|
+
"options": {
|
|
25
|
+
"eslintConfig": ".eslintrc.yaml",
|
|
26
|
+
"lintFilePatterns": ["packages/dockyard/**/*.{js,ts}"],
|
|
27
|
+
"silent": false,
|
|
28
|
+
"fix": false,
|
|
29
|
+
"cache": true,
|
|
30
|
+
"cacheLocation": "./node_modules/.cache/dockyard/.eslintcache",
|
|
31
|
+
"maxWarnings": -1,
|
|
32
|
+
"quiet": false,
|
|
33
|
+
"noEslintrc": false,
|
|
34
|
+
"hasTypeAwareRules": true,
|
|
35
|
+
"cacheStrategy": "metadata"
|
|
36
|
+
}
|
|
21
37
|
}
|
|
22
38
|
}
|
|
23
39
|
}
|
package/.eslintrc.yml
DELETED