@genesislcap/genx 14.165.2 → 14.166.0
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/dist/index.js +2 -0
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -176,6 +176,8 @@ cli
|
|
|
176
176
|
}));
|
|
177
177
|
cli
|
|
178
178
|
.command('test [folder]', 'Run tests')
|
|
179
|
+
.option('-m, --match <pattern>', `Test file pattern, ie. fileA.test.ts, '(fileA|fileB).test.ts', file*.test.ts. Defaults to test.ts in node, and ./**/*.test.ts in browser.`)
|
|
180
|
+
.option('--raw-match', `Match raw pattern`)
|
|
179
181
|
.option('-c, --coverage', 'Produce coverage report')
|
|
180
182
|
.option('-w, --watch', 'Watch files for changes')
|
|
181
183
|
.option('-d, --debug', 'Debug test execution')
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/genx",
|
|
3
3
|
"description": "Genx CLI",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.166.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.0.0"
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"typescript": "^4.5.5"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@genesislcap/build-kit": "14.
|
|
23
|
-
"@genesislcap/eslint-stylelint-builder": "14.
|
|
24
|
-
"@genesislcap/rollup-builder": "14.
|
|
25
|
-
"@genesislcap/ts-builder": "14.
|
|
26
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
27
|
-
"@genesislcap/vite-builder": "14.
|
|
28
|
-
"@genesislcap/webpack-builder": "14.
|
|
22
|
+
"@genesislcap/build-kit": "14.166.0",
|
|
23
|
+
"@genesislcap/eslint-stylelint-builder": "14.166.0",
|
|
24
|
+
"@genesislcap/rollup-builder": "14.166.0",
|
|
25
|
+
"@genesislcap/ts-builder": "14.166.0",
|
|
26
|
+
"@genesislcap/uvu-playwright-builder": "14.166.0",
|
|
27
|
+
"@genesislcap/vite-builder": "14.166.0",
|
|
28
|
+
"@genesislcap/webpack-builder": "14.166.0",
|
|
29
29
|
"cac": "^6.7.14",
|
|
30
30
|
"consola": "^3.0.2",
|
|
31
31
|
"serve-handler": "^6.1.5",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "e0240354a82fbb1ce9dc5c87d8533fd1caddafb0"
|
|
43
43
|
}
|