netlify-cli 16.0.0 → 16.0.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.
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
- "version": "16.0.0",
3
+ "version": "16.0.1",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "netlify-cli",
9
- "version": "16.0.0",
9
+ "version": "16.0.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
13
  "@bugsnag/js": "7.20.2",
14
14
  "@fastify/static": "6.10.2",
15
- "@netlify/build": "29.19.0",
15
+ "@netlify/build": "29.20.0",
16
16
  "@netlify/build-info": "7.7.3",
17
17
  "@netlify/config": "20.8.0",
18
18
  "@netlify/edge-bundler": "8.17.1",
@@ -781,9 +781,9 @@
781
781
  "integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
782
782
  },
783
783
  "node_modules/@netlify/build": {
784
- "version": "29.19.0",
785
- "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.19.0.tgz",
786
- "integrity": "sha512-T0dmPrLotGn1z36dGHFzl1Ndq3DD3APFd+68PlD8k5w/IamnpDkrnNaFpz40+npqK48G+CylLxvXVwLYcHGw2g==",
784
+ "version": "29.20.0",
785
+ "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.20.0.tgz",
786
+ "integrity": "sha512-R2gOkJQYOeitIZtCfQkn1D75ltUsOVuAzbr1fOpvoAqH8xc3Vlw/bmOX2OkF5pGtbvakHay4KvME6q3m2Xxo9g==",
787
787
  "dependencies": {
788
788
  "@bugsnag/js": "^7.0.0",
789
789
  "@honeycombio/opentelemetry-node": "^0.4.0",
@@ -15583,9 +15583,9 @@
15583
15583
  "integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
15584
15584
  },
15585
15585
  "@netlify/build": {
15586
- "version": "29.19.0",
15587
- "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.19.0.tgz",
15588
- "integrity": "sha512-T0dmPrLotGn1z36dGHFzl1Ndq3DD3APFd+68PlD8k5w/IamnpDkrnNaFpz40+npqK48G+CylLxvXVwLYcHGw2g==",
15586
+ "version": "29.20.0",
15587
+ "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.20.0.tgz",
15588
+ "integrity": "sha512-R2gOkJQYOeitIZtCfQkn1D75ltUsOVuAzbr1fOpvoAqH8xc3Vlw/bmOX2OkF5pGtbvakHay4KvME6q3m2Xxo9g==",
15589
15589
  "requires": {
15590
15590
  "@bugsnag/js": "^7.0.0",
15591
15591
  "@honeycombio/opentelemetry-node": "^0.4.0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
3
  "description": "Netlify command line tool",
4
- "version": "16.0.0",
4
+ "version": "16.0.1",
5
5
  "author": "Netlify Inc.",
6
6
  "type": "module",
7
7
  "engines": {
@@ -44,7 +44,7 @@
44
44
  "dependencies": {
45
45
  "@bugsnag/js": "7.20.2",
46
46
  "@fastify/static": "6.10.2",
47
- "@netlify/build": "29.19.0",
47
+ "@netlify/build": "29.20.0",
48
48
  "@netlify/build-info": "7.7.3",
49
49
  "@netlify/config": "20.8.0",
50
50
  "@netlify/edge-bundler": "8.17.1",
package/src/lib/build.mjs CHANGED
@@ -3,6 +3,7 @@ import process from 'process'
3
3
 
4
4
  import build from '@netlify/build'
5
5
 
6
+ import { getBootstrapURL } from './edge-functions/bootstrap.mjs'
6
7
  import { featureFlags as edgeFunctionsFeatureFlags } from './edge-functions/consts.mjs'
7
8
 
8
9
  /**
@@ -43,6 +44,7 @@ export const getBuildOptions = ({
43
44
  ...edgeFunctionsFeatureFlags,
44
45
  functionsBundlingManifest: true,
45
46
  },
47
+ edgeFunctionsBootstrapURL: getBootstrapURL(),
46
48
  })
47
49
 
48
50
  /**
@@ -2,6 +2,7 @@
2
2
  import { promises as fs } from 'fs'
3
3
  import path, { join } from 'path'
4
4
 
5
+ import { getBootstrapURL } from '../lib/edge-functions/bootstrap.mjs'
5
6
  import { INTERNAL_EDGE_FUNCTIONS_FOLDER } from '../lib/edge-functions/consts.mjs'
6
7
  import { getPathInProject } from '../lib/settings.mjs'
7
8
 
@@ -73,6 +74,7 @@ export const runNetlifyBuild = async ({ command, env = {}, options, settings, ti
73
74
  cwd: cachedConfig.buildDir,
74
75
  quiet: options.quiet,
75
76
  saveConfig: options.saveConfig,
77
+ edgeFunctionsBootstrapURL: getBootstrapURL(),
76
78
  }
77
79
 
78
80
  const devCommand = async (settingsOverrides = {}) => {