poku 1.15.0 → 1.15.1
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/lib/modules/poku.js +1 -1
- package/package.json +9 -8
package/lib/modules/poku.js
CHANGED
|
@@ -85,7 +85,7 @@ function poku(targetPaths, configs) {
|
|
|
85
85
|
.join(node_os_1.EOL));
|
|
86
86
|
}
|
|
87
87
|
if (showLogs && files_js_1.fileResults.fail.size > 0) {
|
|
88
|
-
(0, logs_js_1.write)(Array.from(files_js_1.fileResults.
|
|
88
|
+
(0, logs_js_1.write)(Array.from(files_js_1.fileResults.fail)
|
|
89
89
|
.map(([file, time]) => `${indentation_js_1.indentation.test}${format_js_1.format.fail('✘')} ${format_js_1.format.dim(`${file} › ${time}ms`)}`)
|
|
90
90
|
.join(node_os_1.EOL));
|
|
91
91
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poku",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.1",
|
|
4
4
|
"description": "🐷 Poku makes testing easy for Node.js, Bun, Deno and you at the same time.",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
|
|
35
35
|
"prettier:checker": "prettier --check .",
|
|
36
36
|
"prettier:fix": "prettier --write .github/workflows/*.yml .",
|
|
37
|
-
"update": "pu minor && npm i && npm
|
|
37
|
+
"update": "pu minor && npm i && npm audit fix",
|
|
38
|
+
"postupdate": "npm run lint:fix",
|
|
38
39
|
"benchmark": "cd benchmark && npm ci && npm start"
|
|
39
40
|
},
|
|
40
41
|
"license": "MIT",
|
|
@@ -123,19 +124,19 @@
|
|
|
123
124
|
"type": "commonjs",
|
|
124
125
|
"devDependencies": {
|
|
125
126
|
"@types/node": "^20.14.2",
|
|
126
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
127
|
-
"@typescript-eslint/parser": "^7.
|
|
128
|
-
"c8": "^
|
|
129
|
-
"esbuild": "^0.21.
|
|
127
|
+
"@typescript-eslint/eslint-plugin": "^7.13.0",
|
|
128
|
+
"@typescript-eslint/parser": "^7.13.0",
|
|
129
|
+
"c8": "^10.1.0",
|
|
130
|
+
"esbuild": "^0.21.5",
|
|
130
131
|
"eslint": "^8.57.0",
|
|
131
132
|
"eslint-config-prettier": "^9.1.0",
|
|
132
133
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
133
134
|
"eslint-plugin-import": "^2.29.1",
|
|
134
135
|
"eslint-plugin-prettier": "^5.1.3",
|
|
135
136
|
"packages-update": "^2.0.0",
|
|
136
|
-
"prettier": "^3.3.
|
|
137
|
+
"prettier": "^3.3.2",
|
|
137
138
|
"shx": "^0.3.4",
|
|
138
|
-
"tsx": "4.15.
|
|
139
|
+
"tsx": "4.15.2",
|
|
139
140
|
"typescript": "^5.4.5"
|
|
140
141
|
}
|
|
141
142
|
}
|