@salesforce/core 3.31.10 → 3.31.11

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/logger.js +2 -2
  2. package/package.json +1 -1
package/lib/logger.js CHANGED
@@ -289,10 +289,10 @@ class Logger {
289
289
  catch (err1) {
290
290
  try {
291
291
  if (process.platform === 'win32') {
292
- fs.mkdirSync(path.dirname(logFile));
292
+ fs.mkdirSync(path.dirname(logFile), { recursive: true });
293
293
  }
294
294
  else {
295
- fs.mkdirSync(path.dirname(logFile), { mode: 0o700 });
295
+ fs.mkdirSync(path.dirname(logFile), { recursive: true, mode: 0o700 });
296
296
  }
297
297
  }
298
298
  catch (err2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.31.10",
3
+ "version": "3.31.11",
4
4
  "description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",