@availity/analytics-core 4.0.1 → 4.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
+ ## [4.0.2](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@4.0.1...@availity/analytics-core@4.0.2) (2022-05-24)
6
+
7
+
8
+
5
9
  ## [4.0.1](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@4.0.0...@availity/analytics-core@4.0.1) (2022-04-28)
6
10
 
7
11
 
package/jest.config.js CHANGED
@@ -1,16 +1,7 @@
1
- const { pathsToModuleNameMapper } = require('ts-jest/utils');
2
-
3
- const { compilerOptions } = require('../../tsconfig.json');
1
+ const global = require('../../jest.config');
4
2
 
5
3
  module.exports = {
4
+ ...global,
6
5
  displayName: 'analytics-core',
7
- preset: '../../jest.preset.js',
8
- globals: {
9
- 'ts-jest': {
10
- tsconfig: '<rootDir>/tsconfig.spec.json',
11
- },
12
- },
13
6
  coverageDirectory: '../../coverage/analytics-core',
14
- coverageReporters: ['json'],
15
- moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>/../../' }),
16
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/analytics-core",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Analytics base configuration for sdk-js",
5
5
  "keywords": [
6
6
  "availity",
@@ -24,8 +24,6 @@
24
24
  "scripts": {
25
25
  "build": "tsup src/index.js --format esm,cjs --dts",
26
26
  "dev": "tsup src/index.js --format esm,cjs --watch --dts",
27
- "lint": "eslint src",
28
- "lint:fix": "eslint src --fix",
29
27
  "clean": "rm -rf node_modules && rm -rf dist",
30
28
  "bundlesize": "bundlesize",
31
29
  "publish": "yarn npm publish --tolerate-republish --access public"
@@ -34,9 +32,9 @@
34
32
  "yup": "^0.32.9"
35
33
  },
36
34
  "devDependencies": {
37
- "@availity/api-axios": "7.0.1",
38
- "tsup": "^5.10.1",
39
- "typescript": "^4.5.3"
35
+ "@availity/api-axios": "7.0.2",
36
+ "tsup": "^5.12.8",
37
+ "typescript": "^4.6.4"
40
38
  },
41
39
  "publishConfig": {
42
40
  "access": "public"
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/analytics-core/**/*.{js,ts}"],
27
+ "silent": false,
28
+ "fix": false,
29
+ "cache": true,
30
+ "cacheLocation": "./node_modules/.cache/analytics-core/.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/']