@availity/dockyard 1.0.1 → 1.0.2

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.2](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.1...@availity/dockyard@1.0.2) (2022-05-24)
6
+
7
+
8
+
5
9
  ## [1.0.1](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.0...@availity/dockyard@1.0.1) (2022-04-28)
6
10
 
7
11
 
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.1",
3
+ "version": "1.0.2",
4
4
  "description": "Convert yup schema to a friendly docs object",
5
5
  "keywords": [
6
6
  "yup",
@@ -34,8 +34,8 @@
34
34
  "lodash": "^4.17.21"
35
35
  },
36
36
  "devDependencies": {
37
- "tsup": "^5.10.1",
38
- "typescript": "^4.5.3",
37
+ "tsup": "^5.12.8",
38
+ "typescript": "^4.6.4",
39
39
  "yup": "^0.32.11"
40
40
  },
41
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
@@ -1,2 +0,0 @@
1
- extends: ../../.eslintrc.yml
2
- ignorePatterns: ['!**/*', 'node_modules/', 'lib/', 'dist/']