@salesforce/core 8.26.3 → 8.27.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/lib/fs/types.d.ts CHANGED
@@ -18,6 +18,7 @@ export type VirtualFs = Omit<BaseVirtualFs, 'writeFileSync' | 'readFileSync' | '
18
18
  encoding: BufferEncoding;
19
19
  }): Promise<string>;
20
20
  };
21
+ glob: MemFs['promises']['glob'];
21
22
  };
22
23
  readFileSync: {
23
24
  (path: string, options: BufferEncoding | {
@@ -31,6 +32,7 @@ export type VirtualFs = Omit<BaseVirtualFs, 'writeFileSync' | 'readFileSync' | '
31
32
  }) => void;
32
33
  /** there are some differences between node:fs and memfs for statSync around bigint stats. Be careful if using those */
33
34
  statSync: typeof nodeFs.statSync;
35
+ globSync: MemFs['globSync'];
34
36
  mkdtempSync: typeof nodeFs.mkdtempSync;
35
37
  createWriteStream: typeof nodeFs.createWriteStream;
36
38
  mkdirSync: typeof nodeFs.mkdirSync;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "8.26.3",
3
+ "version": "8.27.0",
4
4
  "description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
5
5
  "main": "lib/index",
6
6
  "types": "lib/index.d.ts",
@@ -72,7 +72,7 @@
72
72
  "js2xmlparser": "^4.0.1",
73
73
  "jsonwebtoken": "9.0.3",
74
74
  "jszip": "3.10.1",
75
- "memfs": "^4.30.1",
75
+ "memfs": "4.38.1",
76
76
  "pino": "^9.7.0",
77
77
  "pino-abstract-transport": "^1.2.0",
78
78
  "pino-pretty": "^11.3.0",