proby 0.13.1 → 0.13.2
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/Schema.js +1 -1
- package/lib/bin.js +1 -7
- package/package.json +2 -2
package/lib/Schema.js
CHANGED
|
@@ -3,7 +3,7 @@ const Schema = p({
|
|
|
3
3
|
monorepo: p.boolean.default(false),
|
|
4
4
|
packages: p.string.default("packages"),
|
|
5
5
|
include: p.array(p.string).default(["src"]),
|
|
6
|
-
conditions: p.array(p.string).default(["source"]),
|
|
6
|
+
conditions: p.array(p.string).default(["source", "default"]),
|
|
7
7
|
});
|
|
8
8
|
export default Schema;
|
|
9
9
|
//# sourceMappingURL=Schema.js.map
|
package/lib/bin.js
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import p from "pema";
|
|
3
2
|
import env from "@rcompat/env";
|
|
4
3
|
import fs from "@rcompat/fs";
|
|
5
4
|
import io from "@rcompat/io";
|
|
6
5
|
import is from "@rcompat/is";
|
|
7
6
|
import runtime from "@rcompat/runtime";
|
|
8
|
-
|
|
9
|
-
monorepo: p.boolean.default(false),
|
|
10
|
-
packages: p.string.default("packages"),
|
|
11
|
-
include: p.array(p.string).default(["src"]),
|
|
12
|
-
conditions: p.array(p.string).default(["source"]),
|
|
13
|
-
});
|
|
7
|
+
import Schema from "./Schema.js";
|
|
14
8
|
const root = await fs.project.root();
|
|
15
9
|
const ts_config_file = root.join("proby.config.ts");
|
|
16
10
|
const js_config_file = root.join("proby.config.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proby",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"description": "Standard library test runner",
|
|
5
5
|
"bugs": "https://github.com/rcompat/rcompat/issues",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@rcompat/cli": "^0.18.0",
|
|
22
22
|
"@rcompat/env": "^0.17.0",
|
|
23
23
|
"@rcompat/fs": "^0.28.0",
|
|
24
|
-
"@rcompat/io": "^0.5.0",
|
|
25
24
|
"@rcompat/is": "^0.6.0",
|
|
25
|
+
"@rcompat/io": "^0.5.0",
|
|
26
26
|
"@rcompat/runtime": "^0.11.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|