@deot/dev-tester 2.5.2 → 2.5.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/shared.config.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-tester",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
package/shared.config.ts CHANGED
@@ -26,7 +26,7 @@ const cwd = process.cwd();
26
26
 
27
27
  // options
28
28
  const options = JSON.parse(decodeURIComponent(process.env.TEST_OPTIONS || '{}'));
29
- const { workspace, packageFolderName, subpackageFolderName, subpackagesMap } = options;
29
+ const { workspace, packageFolderName = '*', subpackageFolderName, subpackagesMap } = options;
30
30
 
31
31
  let tests: string[] = [];
32
32
  let collects: string[] = [];