Skip to content

Commit

Permalink
perf: CLI 2.0 Support for other formats, enhanced configuration, tagg…
Browse files Browse the repository at this point in the history
…ing (tolgee#80)

BREAKING CHANGE: updated commands logic and config file
  • Loading branch information
stepan662 committed May 31, 2024
1 parent f7a19f9 commit 70cdea1
Show file tree
Hide file tree
Showing 115 changed files with 16,858 additions and 5,696 deletions.
19 changes: 7 additions & 12 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,8 @@
"es2020": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint", "prettier"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-explicit-any": "off",
Expand All @@ -31,9 +25,10 @@
"overrides": [
{
"env": { "jest": true },
"files": [ "test/**" ],
"plugins": [ "jest" ],
"extends": [ "plugin:jest/recommended" ]
"files": ["test/**"],
"plugins": ["jest"],
"extends": ["plugin:jest/recommended"]
}
]
],
"ignorePatterns": ["schema.generated.ts"]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
node_modules
dist
dist-types
experiment
extractor.d.ts
3 changes: 2 additions & 1 deletion jest.e2e.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default <JestConfigWithTsJest>{

// Tests may update their global env (e.g. Tolgee properties) and cannot be concurrent.
maxConcurrency: 1,
testTimeout: 15e3,
testTimeout: 30e3,
slowTestThreshold: 60e3,
globalSetup: '<rootDir>/test/e2e/__internal__/setup.ts',
};
Loading

0 comments on commit 70cdea1

Please sign in to comment.