@netlify/edge-bundler 3.1.0 → 3.1.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.
@@ -72,13 +72,7 @@ const serve = async ({ certificatePath, debug, distImportMapPath, inspectSetting
72
72
  // Creating an ImportMap instance with any import maps supplied by the user,
73
73
  // if any.
74
74
  const importMap = new ImportMap(importMaps);
75
- const flags = [
76
- '--allow-all',
77
- '--unstable',
78
- `--import-map=${importMap.toDataURL()}`,
79
- '--v8-flags=--disallow-code-generation-from-strings',
80
- '--no-config',
81
- ];
75
+ const flags = ['--allow-all', '--unstable', `--import-map=${importMap.toDataURL()}`, '--no-config'];
82
76
  if (certificatePath) {
83
77
  flags.push(`--cert=${certificatePath}`);
84
78
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/edge-bundler",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Intelligently prepare Netlify Edge Functions for deployment",
5
5
  "type": "module",
6
6
  "main": "./dist/node/index.js",