Skip to content

Commit a8a2b6b

Browse files
committed
Merge branch 'feature/revert-to-0.6.5' into develop
2 parents a820916 + ac6e732 commit a8a2b6b

File tree

4 files changed

+123
-1169
lines changed

4 files changed

+123
-1169
lines changed

.mocharc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"$schema": "https://json.schemastore.org/mocharc.json",
3-
"require": "tsx",
3+
"require": ["ts-node/register/transpile-only", "source-map-support/register"],
4+
"recursive": true,
45
"reporter": "tap",
56
"timeout": 5000,
67
"forbidOnly": true,
78
"watch-files": ["src"],
89
"watch-extensions": ["ts"],
910
"ui": "bdd",
1011
"spec": [
11-
"src/**/*.test.ts",
1212
"src/**/install.test.ts",
1313
"src/**/uninstall.test.ts",
1414
"src/**/prune.test.ts",

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"postpack": "rm -f oclif.manifest.json",
2222
"posttest": "pnpm run lint",
2323
"prepack": "oclif manifest && pnpm run build:release && pnpm run test:unit",
24-
"test:unit": "mocha",
25-
"test:coverage": "nyc mocha",
24+
"test:unit": "npm run build && mocha",
25+
"test:coverage": "c8 npm run test:unit",
2626
"prepare": "husky"
2727
},
2828
"keywords": [
@@ -90,8 +90,9 @@
9090
"@types/mocha": "10.0.10",
9191
"@types/mock-fs": "4.13.4",
9292
"@types/node": "22.13.1",
93-
"@types/proxyquire": "^1.3.31",
93+
"@types/proxyquire": "1.3.31",
9494
"@types/sinon": "17.0.3",
95+
"c8": "10.1.3",
9596
"chai": "5.1.2",
9697
"eslint": "9.20.0",
9798
"eslint-config-prettier": "10.0.1",
@@ -100,15 +101,14 @@
100101
"husky": "9.1.7",
101102
"lint-staged": "15.4.3",
102103
"mocha": "11.1.0",
103-
"nyc": "17.1.0",
104104
"obsidian": "1.7.2",
105105
"oclif": "4.17.25",
106106
"prettier": "3.4.2",
107-
"proxyquire": "^2.1.3",
107+
"proxyquire": "2.1.3",
108108
"sinon": "19.0.2",
109+
"source-map-support": "0.5.21",
109110
"ts-node": "10.9.2",
110-
"tsx": "4.19.2",
111-
"typescript": "5.7.3",
111+
"typescript": "5.5.4",
112112
"typescript-eslint": "8.23.0"
113113
},
114114
"pnpm": {

0 commit comments

Comments
 (0)