@emarketeer/ts-microservice-commons 4.0.0-beta.5 → 4.0.1

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/dist/.eslintrc CHANGED
@@ -83,6 +83,7 @@
83
83
  "@typescript-eslint/no-useless-constructor": ["error"],
84
84
  "no-empty-function": "off",
85
85
  "@typescript-eslint/no-empty-function": ["error"],
86
+ "default-param-last": "off",
86
87
  "@typescript-eslint/no-unused-vars": [
87
88
  "error",
88
89
  {
@@ -4,6 +4,7 @@
4
4
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, (global.jest = global.jest || {}, global.jest.config = global.jest.config || {}, global.jest.config.js = factory()));
5
5
  }(this, (function () { 'use strict';
6
6
 
7
+ var esModules = ['@eMarketeerSE/runtime-commons'].join('|');
7
8
  var config = {
8
9
  verbose: true,
9
10
  testEnvironment: 'node',
@@ -22,7 +23,8 @@
22
23
  setupFilesAfterEnv: ['jest-extended'],
23
24
  rootDir: '../../../../../',
24
25
  testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
25
- moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
26
+ moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
27
+ transformIgnorePatterns: ["/node_modules/(?!" + esModules + ")"]
26
28
  };
27
29
  var shouldAddSetup = !process.argv.includes('unit');
28
30
  if (shouldAddSetup) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emarketeer/ts-microservice-commons",
3
- "version": "4.0.0-beta.5",
3
+ "version": "4.0.1",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "bin": {
@@ -90,7 +90,7 @@
90
90
  "cross-env": "^6.0.0",
91
91
  "cross-spawn": "^7.0.1",
92
92
  "esbuild": "^0.14.18",
93
- "@emarketeer/esbuild-plugin-tsc": "^0.4.0",
93
+ "@emarketeer/esbuild-plugin-tsc": "^0.4.1",
94
94
  "eslint": "7.32.0",
95
95
  "eslint-config-airbnb-base": "^15.0.0",
96
96
  "eslint-plugin-import": "^2.25.4",
@@ -106,12 +106,8 @@
106
106
  "serverless-esbuild": "^1.23.4",
107
107
  "serverless-plugin-lambda-insights": "^1.0.8",
108
108
  "serverless-plugin-resource-tagging": "^1.2.0",
109
- "serverless-webpack": "^5.6.1",
110
- "terser-webpack-plugin": "^5.3.0",
111
109
  "ts-jest": "^26.4.3",
112
- "ts-loader": "^9.2.6",
113
110
  "typescript": "^4.4.2",
114
- "webpack": "^5.67.0",
115
111
  "yaml": "^1.7.2"
116
112
  },
117
113
  "devDependencies": {