new version
This commit is contained in:
@@ -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
@@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Generated
+2
-2
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user