From 29442db6420207647e186aff90e64aa20d55bdeb Mon Sep 17 00:00:00 2001 From: CrisGrud Date: Thu, 25 Jan 2024 10:45:32 +0100 Subject: [PATCH 1/2] Fixed file generation --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 92f2341..0020458 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "copy:assets": "copyfiles --verbose ./src/**/*.{json,png,jpg,svg,xls,xlsx} ./dist/", "republish": "npm run build:clean && yalc push", "test:i18n": "rm -f test/out/*.json test/out/*.ts && nodemon --exec 'ts-node' src/cli/i18n-msg/index.ts", - "test": "jest --config jest.config.js --runInBand ", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "jest --config jest.config.js --watch --detectOpenHandles", "lintify": "eslint .", "prettify": "prettier --write .", From 90fae5a281ce23caabe467d0ff413093e343d3fb Mon Sep 17 00:00:00 2001 From: CrisGrud Date: Thu, 25 Jan 2024 10:58:48 +0100 Subject: [PATCH 2/2] refactored --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0020458..21490ef 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "copy:assets": "copyfiles --verbose ./src/**/*.{json,png,jpg,svg,xls,xlsx} ./dist/", "republish": "npm run build:clean && yalc push", "test:i18n": "rm -f test/out/*.json test/out/*.ts && nodemon --exec 'ts-node' src/cli/i18n-msg/index.ts", - "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.js --runInBand", "test:watch": "jest --config jest.config.js --watch --detectOpenHandles", "lintify": "eslint .", "prettify": "prettier --write .",