@salesforce/core 3.31.10 → 3.31.12

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/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) {
@@ -8,7 +8,7 @@ An unknown server error occurred. Please try again. If you still see this error,
8
8
 
9
9
  # SignupFailedActionError
10
10
 
11
- See https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_signuprequest.htm for information on error code %s.
11
+ See https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_scratch_orgs_error_codes.htm for information on error code %s.
12
12
 
13
13
  # SignupUnexpectedError
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.31.10",
3
+ "version": "3.31.12",
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",