@lwrjs/shared-utils 0.10.0-alpha.3 → 0.10.0-alpha.6
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/es/identity.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const DEFAULT_LWR_LOCKER_CONFIG: {
|
|
|
15
15
|
trustedComponents: string[];
|
|
16
16
|
};
|
|
17
17
|
export declare const DEFAULT_LWR_BOOTSTRAP_CONFIG: NormalizedLwrAppBootstrapConfig;
|
|
18
|
-
|
|
18
|
+
type ModuleIdentifierPartial = Partial<AbstractModuleId>;
|
|
19
19
|
/**
|
|
20
20
|
* Turn the dots in a version into underscores
|
|
21
21
|
* @param version
|
package/build/es/logger.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
type LEVEL = 'verbose' | 'debug' | 'info' | 'warn' | 'error';
|
|
2
2
|
export declare const VERBOSE: LEVEL;
|
|
3
3
|
export declare const DEBUG: LEVEL;
|
|
4
4
|
export declare const INFO: LEVEL;
|
|
5
5
|
export declare const WARN: LEVEL;
|
|
6
6
|
export declare const ERROR: LEVEL;
|
|
7
|
-
|
|
7
|
+
type LoggerOptions = {
|
|
8
8
|
dedupe?: Set<string>;
|
|
9
9
|
};
|
|
10
10
|
declare function log(level: string, message: string, additionalInfo?: any): void;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.10.0-alpha.
|
|
7
|
+
"version": "0.10.0-alpha.6",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"es-module-lexer": "^0.3.18",
|
|
49
49
|
"fast-json-stable-stringify": "^2.1.0",
|
|
50
|
-
"magic-string": "^0.
|
|
50
|
+
"magic-string": "^0.30.0",
|
|
51
51
|
"mime-types": "^2.1.33",
|
|
52
52
|
"ms": "^2.1.3",
|
|
53
53
|
"parse5-sax-parser": "^6.0.1",
|
|
@@ -59,16 +59,16 @@
|
|
|
59
59
|
"@locker/compiler": "0.19.0",
|
|
60
60
|
"chokidar": "^3.5.3",
|
|
61
61
|
"esbuild": "^0.9.7",
|
|
62
|
-
"rollup": "
|
|
62
|
+
"rollup": "^2.78.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@lwrjs/diagnostics": "0.10.0-alpha.
|
|
66
|
-
"@lwrjs/types": "0.10.0-alpha.
|
|
65
|
+
"@lwrjs/diagnostics": "0.10.0-alpha.6",
|
|
66
|
+
"@lwrjs/types": "0.10.0-alpha.6",
|
|
67
67
|
"@types/mime-types": "2.1.1",
|
|
68
68
|
"@types/path-to-regexp": "^1.7.0"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": ">=16.0.0 <20"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "9592d07bd5204eb85c9cb8b576e2a267a798ce00"
|
|
74
74
|
}
|