@lwrjs/shared-utils 0.9.0-alpha.30 → 0.9.0-alpha.32

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.
@@ -34,6 +34,7 @@ __export(exports, {
34
34
  IMMUTABLE_ASSET_PREFIX: () => IMMUTABLE_ASSET_PREFIX,
35
35
  LATEST_SIGNATURE: () => LATEST_SIGNATURE,
36
36
  LOCALE_SIGIL: () => LOCALE_SIGIL,
37
+ VERSION_NOT_PROVIDED: () => VERSION_NOT_PROVIDED,
37
38
  VERSION_SIGIL: () => VERSION_SIGIL,
38
39
  explodeSpecifier: () => explodeSpecifier,
39
40
  explodeSpecifiers: () => explodeSpecifiers,
@@ -64,6 +65,7 @@ var LATEST_SIGNATURE = "latest";
64
65
  var DEFAULT_TITLE = "LWR App";
65
66
  var IMMUTABLE_ASSET_PREFIX = "/_immutable/";
66
67
  var ASSETS_CACHE_DIR = "assetsCache";
68
+ var VERSION_NOT_PROVIDED = "version-not-provided";
67
69
  var DEFAULT_LOCKER_TRUSTED_CMP = ["@locker/*", "lwr/*", "@lwrjs/*", "lwc", "@lwc/*"];
68
70
  var DEFAULT_LWR_LOCKER_CONFIG = {
69
71
  enabled: false,
@@ -8,6 +8,7 @@ export declare const LATEST_SIGNATURE = "latest";
8
8
  export declare const DEFAULT_TITLE = "LWR App";
9
9
  export declare const IMMUTABLE_ASSET_PREFIX = "/_immutable/";
10
10
  export declare const ASSETS_CACHE_DIR = "assetsCache";
11
+ export declare const VERSION_NOT_PROVIDED = "version-not-provided";
11
12
  export declare const DEFAULT_LOCKER_TRUSTED_CMP: string[];
12
13
  export declare const DEFAULT_LWR_LOCKER_CONFIG: {
13
14
  enabled: boolean;
@@ -8,6 +8,7 @@ export const LATEST_SIGNATURE = 'latest';
8
8
  export const DEFAULT_TITLE = 'LWR App';
9
9
  export const IMMUTABLE_ASSET_PREFIX = '/_immutable/';
10
10
  export const ASSETS_CACHE_DIR = 'assetsCache';
11
+ export const VERSION_NOT_PROVIDED = 'version-not-provided';
11
12
  // Locker trusted components
12
13
  export const DEFAULT_LOCKER_TRUSTED_CMP = ['@locker/*', 'lwr/*', '@lwrjs/*', 'lwc', '@lwc/*'];
13
14
  export const DEFAULT_LWR_LOCKER_CONFIG = {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.9.0-alpha.30",
7
+ "version": "0.9.0-alpha.32",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -61,13 +61,13 @@
61
61
  "rollup": "~2.45.2"
62
62
  },
63
63
  "devDependencies": {
64
- "@lwrjs/diagnostics": "0.9.0-alpha.30",
65
- "@lwrjs/types": "0.9.0-alpha.30",
64
+ "@lwrjs/diagnostics": "0.9.0-alpha.32",
65
+ "@lwrjs/types": "0.9.0-alpha.32",
66
66
  "@types/mime-types": "2.1.1",
67
67
  "@types/path-to-regexp": "^1.7.0"
68
68
  },
69
69
  "engines": {
70
70
  "node": ">=16.0.0 <20"
71
71
  },
72
- "gitHead": "6e18768b8e47066c41ae0b792bf4aa766b0b784b"
72
+ "gitHead": "50e1f36c99ce2cd1ea8f6f1a2d3cf3967ca45de5"
73
73
  }