@availity/analytics-core 4.0.0 → 4.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 CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [4.0.3](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@4.0.2...@availity/analytics-core@4.0.3) (2022-06-15)
6
+
7
+
8
+
9
+ ## [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)
10
+
11
+
12
+
13
+ ## [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)
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
  # [4.0.0](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@3.1.8...@availity/analytics-core@4.0.0) (2022-04-28)
6
23
 
7
24
 
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.0",
3
+ "version": "4.0.3",
4
4
  "description": "Analytics base configuration for sdk-js",
5
5
  "keywords": [
6
6
  "availity",
@@ -17,14 +17,13 @@
17
17
  },
18
18
  "license": "MIT",
19
19
  "author": "Kasey Powers <kasey.powers@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",
23
24
  "scripts": {
24
25
  "build": "tsup src/index.js --format esm,cjs --dts",
25
26
  "dev": "tsup src/index.js --format esm,cjs --watch --dts",
26
- "lint": "eslint src",
27
- "lint:fix": "eslint src --fix",
28
27
  "clean": "rm -rf node_modules && rm -rf dist",
29
28
  "bundlesize": "bundlesize",
30
29
  "publish": "yarn npm publish --tolerate-republish --access public"
@@ -33,9 +32,9 @@
33
32
  "yup": "^0.32.9"
34
33
  },
35
34
  "devDependencies": {
36
- "@availity/api-axios": "7.0.0",
37
- "tsup": "^5.10.1",
38
- "typescript": "^4.5.3"
35
+ "@availity/api-axios": "7.0.3",
36
+ "tsup": "^5.12.8",
37
+ "typescript": "^4.6.4"
39
38
  },
40
39
  "publishConfig": {
41
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/']