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 ### Push to git
Pushing to git is on by default but if you would like to turn it off just use: Pushing to git is on by default but if you would like to turn it off just use:
```sh ```sh
oc config set OCO_GITPUSH=false oc config set OCO_GITPUSH=false
``` ```
+13 -14
View File
@@ -3,26 +3,25 @@
* https://jestjs.io/docs/configuration * https://jestjs.io/docs/configuration
*/ */
import type {Config} from 'jest'; import type { Config } from 'jest';
const config: Config = { const config: Config = {
coverageProvider: "v8", testTimeout: 100_000,
moduleDirectories: [ coverageProvider: 'v8',
"node_modules", moduleDirectories: ['node_modules', 'src'],
"src",
],
preset: 'ts-jest/presets/js-with-ts-esm', preset: 'ts-jest/presets/js-with-ts-esm',
setupFilesAfterEnv: ['<rootDir>/test/jest-setup.ts'], setupFilesAfterEnv: ['<rootDir>/test/jest-setup.ts'],
testEnvironment: "node", testEnvironment: 'node',
testRegex: [ testRegex: ['.*\\.test\\.ts$'],
'.*\\.test\\.ts$',
],
transformIgnorePatterns: ['node_modules/(?!cli-testing-library)'], transformIgnorePatterns: ['node_modules/(?!cli-testing-library)'],
transform: { transform: {
'^.+\\.(ts|tsx)$': ['ts-jest', { '^.+\\.(ts|tsx)$': [
diagnostics: false, 'ts-jest',
useESM: true {
}], diagnostics: false,
useESM: true
}
]
} }
}; };
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "opencommit", "name": "opencommit",
"version": "3.0.13", "version": "3.0.14",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "opencommit", "name": "opencommit",
"version": "3.0.13", "version": "3.0.14",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.10.0", "@actions/core": "^1.10.0",