proby 0.13.4 → 0.14.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.
Files changed (2) hide show
  1. package/lib/bin.js +2 -2
  2. package/package.json +10 -10
package/lib/bin.js CHANGED
@@ -13,10 +13,10 @@ async function read_conditions(file) {
13
13
  if (json.extends === undefined) {
14
14
  return [];
15
15
  }
16
- const next = await runtime.resolve(json.extends, file.directory.path);
16
+ const next = runtime.resolve(json.extends, file.directory.path);
17
17
  return read_conditions(fs.ref(next));
18
18
  }
19
- const root = await fs.project.root();
19
+ const root = await runtime.projectRoot();
20
20
  const ts_config_file = root.join("proby.config.ts");
21
21
  const js_config_file = root.join("proby.config.js");
22
22
  const user_config = await ts_config_file.exists()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proby",
3
- "version": "0.13.4",
3
+ "version": "0.14.0",
4
4
  "description": "Standard library test runner",
5
5
  "bugs": "https://github.com/rcompat/rcompat/issues",
6
6
  "license": "MIT",
@@ -16,19 +16,19 @@
16
16
  "directory": "packages/proby"
17
17
  },
18
18
  "dependencies": {
19
- "@rcompat/assert": "^0.8.1",
20
- "@rcompat/cli": "^0.18.1",
21
- "@rcompat/env": "^0.17.2",
22
- "@rcompat/fs": "^0.28.1",
23
- "@rcompat/is": "^0.6.1",
24
- "@rcompat/io": "^0.5.1",
25
- "@rcompat/runtime": "^0.11.1"
19
+ "@rcompat/assert": "^0.9.0",
20
+ "@rcompat/cli": "^0.19.0",
21
+ "@rcompat/env": "^0.18.0",
22
+ "@rcompat/fs": "^0.29.0",
23
+ "@rcompat/io": "^0.6.0",
24
+ "@rcompat/is": "^0.7.0",
25
+ "@rcompat/runtime": "^0.12.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@rcompat/type": "^0.12.3"
28
+ "@rcompat/type": "^0.13.0"
29
29
  },
30
30
  "peerDependencies": {
31
- "@rcompat/test": "^0.12.2"
31
+ "@rcompat/test": "^0.13.0"
32
32
  },
33
33
  "peerDependenciesMeta": {
34
34
  "@rcompat/test": {