new version

This commit is contained in:
di-sukharev
2024-05-05 19:04:19 +03:00
parent 7469633e3d
commit 058bad95cd
3 changed files with 16 additions and 16 deletions
+1
View File
@@ -172,6 +172,7 @@ All available languages are currently listed in the [i18n](https://github.com/di
### Push to git
Pushing to git is on by default but if you would like to turn it off just use:
```sh
oc config set OCO_GITPUSH=false
```
+13 -14
View File
@@ -3,26 +3,25 @@
* https://jestjs.io/docs/configuration
*/
import type {Config} from 'jest';
import type { Config } from 'jest';
const config: Config = {
coverageProvider: "v8",
moduleDirectories: [
"node_modules",
"src",
],
testTimeout: 100_000,
coverageProvider: 'v8',
moduleDirectories: ['node_modules', 'src'],
preset: 'ts-jest/presets/js-with-ts-esm',
setupFilesAfterEnv: ['<rootDir>/test/jest-setup.ts'],
testEnvironment: "node",
testRegex: [
'.*\\.test\\.ts$',
],
testEnvironment: 'node',
testRegex: ['.*\\.test\\.ts$'],
transformIgnorePatterns: ['node_modules/(?!cli-testing-library)'],
transform: {
'^.+\\.(ts|tsx)$': ['ts-jest', {
diagnostics: false,
useESM: true
}],
'^.+\\.(ts|tsx)$': [
'ts-jest',
{
diagnostics: false,
useESM: true
}
]
}
};
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "opencommit",
"version": "3.0.13",
"version": "3.0.14",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "opencommit",
"version": "3.0.13",
"version": "3.0.14",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",