Skip to content

Commit

Permalink
chore: changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rudemex committed May 7, 2024
1 parent 14b355c commit 3860341
Show file tree
Hide file tree
Showing 46 changed files with 1,376 additions and 537 deletions.
10 changes: 2 additions & 8 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@
"sourceType": "module",
"createDefaultProgram": true
},
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"plugins": ["@typescript-eslint/eslint-plugin"],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"**/__test__/**/*",
"*.json",
"*.md"
],
"ignorePatterns": ["**/__test__/**/*", "*.json", "*.md"],
"root": true,
"env": {
"es2020": true,
Expand Down
Empty file added 9.cookie
Empty file.
26 changes: 14 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,21 +88,21 @@
"redis": "^4.6.12",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.5.5",
"testcontainers": "^10.6.0",
"testcontainers": "^10.9.0",
"typeorm": "^0.3.19",
"uuid": "^9.0.1"
},
"devDependencies": {
"@automock/jest": "^2.1.0",
"@babel/core": "^7.23.7",
"@babel/parser": "^7.23.6",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/core": "^7.24.3",
"@babel/parser": "^7.24.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-syntax-decorators": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-decorators": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/traverse": "^7.23.7",
"@babel/traverse": "^7.24.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@elastic/elasticsearch-mock": "^2.0.0",
Expand All @@ -116,6 +116,8 @@
"@pika/plugin-standard-pkg": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/camunda-external-task-client-js": "^1.3.6",
"@types/cookie": "^0.6.0",
"@types/cookie-signature": "^1.1.2",
"@types/ejs": "^3.1.5",
"@types/elasticsearch": "^5.0.43",
"@types/express": "^4.17.21",
Expand All @@ -132,12 +134,12 @@
"@types/pug": "^2.0.10",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.1",
"jest-junit": "^16.0.0",
Expand All @@ -155,12 +157,12 @@
"prettier": "^3.2.2",
"rimraf": "^5.0.1",
"supertest": "^6.3.4",
"testcontainers": "^10.6.0",
"testcontainers": "^10.9.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"turbo": "^1.11.3",
"turbo": "^1.13.3",
"typescript": "^4.9.5"
}
}
2 changes: 1 addition & 1 deletion packages/config/jest-mochawesome-reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const createSuite = (_isRoot = false) => {
const findTestCase = (_testCaseName, _suitTitle, _testFileContent) => {
const ast = parser.parse(_testFileContent, {
sourceType: 'module',
plugins: ['jsx', 'typescript', ['decorators', { decoratorsBeforeExport: true, legacy: true }]],
plugins: ['jsx', 'typescript',['decorators', { decoratorsBeforeExport: true, legacy: true }]],
});
let testCaseCode = '';
let hasDescribe = false;
Expand Down
211 changes: 0 additions & 211 deletions packages/config/jest-mochawesome-reporter_bkp.js

This file was deleted.

4 changes: 2 additions & 2 deletions packages/config/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ module.exports = {
addFileAttribute: 'true',
},
],
[
/*[
path.join(__dirname, './jest-mochawesome-reporter.js'),
{
reportDir: 'test-results',
reportFilename: 'test-report.json',
},
],
],*/
],
coverageThreshold: {
global: {
Expand Down
8 changes: 8 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie": "^0.6.0",
"cookie-signature": "^1.2.1",
"csrf": "^3.1.0",
"joi": "^17.11.1",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.5.5"
Expand All @@ -50,6 +54,10 @@
"@nestjs/class-transformer": "^0.4.0",
"@nestjs/class-validator": "^0.13.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie": "^0.6.0",
"cookie-signature": "^1.2.1",
"csrf": "^3.1.0",
"joi": "^17.11.1"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 3860341

Please sign in to comment.