netlify-cli 17.37.0 → 17.37.1

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.
@@ -420,7 +420,7 @@ title, }) => {
420
420
  let edgeFunctionLogsUrl = `${results.deploy.admin_url}/logs/edge-functions`;
421
421
  if (!deployToProduction) {
422
422
  functionLogsUrl += `?scope=deploy:${deployId}`;
423
- edgeFunctionLogsUrl += `?scope=deploy:${deployId}`;
423
+ edgeFunctionLogsUrl += `?scope=deployid:${deployId}`;
424
424
  }
425
425
  return {
426
426
  siteId: results.deploy.site_id,
@@ -14,7 +14,7 @@ export const createDevExecCommand = (program) => program
14
14
  .command('dev:exec')
15
15
  .argument('<...cmd>', `the command that should be executed`)
16
16
  .option('--context <context>', 'Specify a deploy context or branch for environment variables (contexts: "production", "deploy-preview", "branch-deploy", "dev")', normalizeContext, 'dev')
17
- .description('Exec command\nRuns a command within the netlify dev environment, e.g. with env variables from any installed addons')
17
+ .description('Runs a command within the netlify dev environment. For example, with environment variables from any installed add-ons')
18
18
  .allowExcessArguments(true)
19
19
  .addExamples(['netlify dev:exec npm run bootstrap'])
20
20
  .action(devExec);