@lwrjs/shared-utils 0.19.6 → 0.19.7

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/build/cjs/env.cjs CHANGED
@@ -47,7 +47,8 @@ function getFeatureFlags() {
47
47
  EXPERIMENTAL_ASSET_HEADERS: parseStringFlag("EXPERIMENTAL_ASSET_HEADERS"),
48
48
  SSR_TIMEOUT: parseStringFlag("SSR_TIMEOUT"),
49
49
  PRELOAD_INCLUDED_MODULES: parseBooleanFlag("PRELOAD_INCLUDED_MODULES"),
50
- DATA_PROVIDER_METRICS: parseBooleanFlag("DATA_PROVIDER_METRICS")
50
+ DATA_PROVIDER_METRICS: parseBooleanFlag("DATA_PROVIDER_METRICS"),
51
+ DISABLE_INCLUDED_IMPORT_MAP: parseBooleanFlag("DISABLE_INCLUDED_IMPORT_MAP")
51
52
  };
52
53
  }
53
54
  function parseBooleanFlag(flag) {
package/build/es/env.js CHANGED
@@ -36,6 +36,8 @@ export function getFeatureFlags() {
36
36
  PRELOAD_INCLUDED_MODULES: parseBooleanFlag('PRELOAD_INCLUDED_MODULES'),
37
37
  // Enable data provider metrics
38
38
  DATA_PROVIDER_METRICS: parseBooleanFlag('DATA_PROVIDER_METRICS'),
39
+ // Disable included modules from being added to the import map
40
+ DISABLE_INCLUDED_IMPORT_MAP: parseBooleanFlag('DISABLE_INCLUDED_IMPORT_MAP'),
39
41
  };
40
42
  }
41
43
  /**
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.19.6",
7
+ "version": "0.19.7",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -37,7 +37,7 @@
37
37
  "build/**/*.d.ts"
38
38
  ],
39
39
  "dependencies": {
40
- "@lwrjs/diagnostics": "0.19.6",
40
+ "@lwrjs/diagnostics": "0.19.7",
41
41
  "es-module-lexer": "^1.5.4",
42
42
  "fast-json-stable-stringify": "^2.1.0",
43
43
  "magic-string": "^0.30.9",
@@ -50,7 +50,7 @@
50
50
  "slugify": "^1.4.5"
51
51
  },
52
52
  "devDependencies": {
53
- "@lwrjs/types": "0.19.6",
53
+ "@lwrjs/types": "0.19.7",
54
54
  "@types/mime-types": "2.1.4",
55
55
  "@types/path-to-regexp": "^1.7.0",
56
56
  "memfs": "^4.13.0"
@@ -58,5 +58,5 @@
58
58
  "engines": {
59
59
  "node": ">=20.0.0"
60
60
  },
61
- "gitHead": "c2023bf26b8856aebf943c78e1c7284134a88704"
61
+ "gitHead": "66223bcb48c4e0b18bfffb78fcd45c6cefa80874"
62
62
  }