@decaf-ts/utils 0.11.10 → 0.11.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/utils.cjs +1 -1
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.js +1 -1
- package/dist/utils.js.map +1 -1
- package/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/tests/jestPerformanceRunner.d.ts +14 -1
- package/lib/esm/tests/jestPerformanceRunner.js +38 -4
- package/lib/esm/tests/jestPerformanceRunner.js.map +1 -1
- package/lib/esm/utils/fs.d.ts +1 -1
- package/lib/esm/utils/fs.js +75 -28
- package/lib/esm/utils/fs.js.map +1 -1
- package/lib/esm/utils/performanceRunner.d.ts +1 -0
- package/lib/esm/utils/performanceRunner.js +33 -3
- package/lib/esm/utils/performanceRunner.js.map +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/tests/jestPerformanceRunner.cjs +37 -3
- package/lib/tests/jestPerformanceRunner.d.ts +14 -1
- package/lib/tests/jestPerformanceRunner.js.map +1 -1
- package/lib/utils/fs.cjs +75 -28
- package/lib/utils/fs.d.ts +1 -1
- package/lib/utils/fs.js.map +1 -1
- package/lib/utils/performanceRunner.cjs +33 -3
- package/lib/utils/performanceRunner.d.ts +1 -0
- package/lib/utils/performanceRunner.js.map +1 -1
- package/package.json +12 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/utils",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.12",
|
|
4
4
|
"description": "module management utils for decaf-ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"build": "tsx ./src/bin/build-scripts.ts --dev && npm run add:shebang",
|
|
33
33
|
"build:prod": "tsx ./src/bin/build-scripts.ts --prod && npm run add:shebang",
|
|
34
34
|
"test": "jest --runInBand --detectOpenHandles",
|
|
35
|
-
"test:unit": "jest --
|
|
36
|
-
"test:integration": "jest --
|
|
37
|
-
"test:all": "jest --
|
|
35
|
+
"test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
|
|
36
|
+
"test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
|
|
37
|
+
"test:all": "jest --testPathPatterns=\"/tests\" --passWithNoTests",
|
|
38
38
|
"test:circular": "dpdm -T --no-warning --no-tree ./src/index.ts",
|
|
39
|
-
"coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.
|
|
39
|
+
"coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.cjs",
|
|
40
40
|
"lint": "eslint .",
|
|
41
41
|
"lint-fix": "eslint --fix .",
|
|
42
42
|
"prepare-pr": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"@rollup/plugin-terser": "^0.4.4",
|
|
106
106
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
107
107
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
108
|
-
"@types/jest": "^
|
|
108
|
+
"@types/jest": "^30.0.0",
|
|
109
109
|
"@types/prompts": "^2.4.9",
|
|
110
110
|
"@types/shell-quote": "^1.7.5",
|
|
111
111
|
"clean-publish": "^5.1.0",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"eslint-config-prettier": "^10.1.2",
|
|
115
115
|
"eslint-plugin-prettier": "^5.2.6",
|
|
116
116
|
"globals": "^16.0.0",
|
|
117
|
-
"jest": "^
|
|
117
|
+
"jest": "^30.2.0",
|
|
118
118
|
"jest-html-reporters": "^3.1.7",
|
|
119
119
|
"jest-junit": "^16.0.0",
|
|
120
120
|
"jsdoc": "^4.0.4",
|
|
@@ -129,12 +129,16 @@
|
|
|
129
129
|
"rollup": "^4.0.0",
|
|
130
130
|
"shell-quote": "^1.8.3",
|
|
131
131
|
"styled-string-builder": "latest",
|
|
132
|
-
"ts-jest": "^29.
|
|
132
|
+
"ts-jest": "^29.4.6",
|
|
133
133
|
"ts-loader": "^9.5.2",
|
|
134
134
|
"ts-node": "^10.9.2",
|
|
135
135
|
"tsx": "^4.20.6",
|
|
136
136
|
"typed-object-accumulator": "latest",
|
|
137
137
|
"typescript": "^5.8.3",
|
|
138
138
|
"typescript-eslint": "^8.31.0"
|
|
139
|
+
},
|
|
140
|
+
"overrides": {
|
|
141
|
+
"minimatch": "^10.2.2",
|
|
142
|
+
"test-exclude": "7.0.1"
|
|
139
143
|
}
|
|
140
144
|
}
|