mock-repository-provider 5.5.91 → 5.5.95

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mock-repository-provider",
3
- "version": "5.5.91",
3
+ "version": "5.5.95",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -29,21 +29,21 @@
29
29
  "lint:docs": "documentation lint ./src/**/*.mjs"
30
30
  },
31
31
  "dependencies": {
32
- "content-entry": "^2.6.7",
33
- "content-entry-filesystem": "^2.0.11",
32
+ "content-entry": "^2.9.6",
33
+ "content-entry-filesystem": "^3.1.9",
34
34
  "globby": "^12.0.2",
35
35
  "micromatch": "^4.0.2",
36
36
  "one-time-execution-method": "^2.0.9",
37
- "repository-provider": "^25.5.5"
37
+ "repository-provider": "^25.5.11"
38
38
  },
39
39
  "devDependencies": {
40
40
  "ava": "^3.15.0",
41
- "c8": "^7.9.0",
41
+ "c8": "^7.10.0",
42
42
  "documentation": "^13.2.5",
43
- "semantic-release": "^18.0.0"
43
+ "semantic-release": "^18.0.1"
44
44
  },
45
45
  "engines": {
46
- "node": ">=14.17.6"
46
+ "node": ">=14.18.1"
47
47
  },
48
48
  "repository": {
49
49
  "type": "git",
@@ -89,7 +89,7 @@ export class MockFileSystemBranch extends Branch {
89
89
 
90
90
  async maybeEntry(name) {
91
91
  const entry = new FileSystemEntry(name, this.files);
92
- if (await entry.getExists()) {
92
+ if (await entry.isExistent) {
93
93
  return entry;
94
94
  }
95
95
  return undefined;
@@ -97,7 +97,7 @@ export class MockFileSystemBranch extends Branch {
97
97
 
98
98
  async entry(name) {
99
99
  const entry = new FileSystemEntry(name, this.files);
100
- if (await entry.getExists()) {
100
+ if (await entry.isExistent) {
101
101
  return entry;
102
102
  }
103
103
  throw new Error(`Entry not found: ${name}`);