@lwrjs/lwc-module-provider 0.12.0-alpha.1 → 0.12.0-alpha.2
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/index.cjs +0 -2
- package/build/es/index.js +0 -2
- package/package.json +7 -7
package/build/cjs/index.cjs
CHANGED
|
@@ -108,7 +108,6 @@ var LwcModuleProvider = class {
|
|
|
108
108
|
});
|
|
109
109
|
if (!compiledModule) {
|
|
110
110
|
const [name] = rawName.split("#");
|
|
111
|
-
const enableLightningWebSecurityTransforms = !!this.locker?.enabled && !this.locker?.clientOnly;
|
|
112
111
|
const scopedStyles = moduleEntry.entry.endsWith(".css") && moduleEntry.specifier.endsWith("?scoped=true");
|
|
113
112
|
import_diagnostics.logger.debug({
|
|
114
113
|
label: `${this.name}`,
|
|
@@ -124,7 +123,6 @@ var LwcModuleProvider = class {
|
|
|
124
123
|
namespace,
|
|
125
124
|
name,
|
|
126
125
|
filename: moduleEntry.entry,
|
|
127
|
-
enableLightningWebSecurityTransforms,
|
|
128
126
|
scopedStyles
|
|
129
127
|
});
|
|
130
128
|
import_diagnostics.logger.verbose({
|
package/build/es/index.js
CHANGED
|
@@ -84,7 +84,6 @@ export default class LwcModuleProvider {
|
|
|
84
84
|
});
|
|
85
85
|
if (!compiledModule) {
|
|
86
86
|
const [name] = rawName.split('#');
|
|
87
|
-
const enableLightningWebSecurityTransforms = !!this.locker?.enabled && !this.locker?.clientOnly;
|
|
88
87
|
const scopedStyles = moduleEntry.entry.endsWith('.css') && moduleEntry.specifier.endsWith('?scoped=true');
|
|
89
88
|
logger.debug({
|
|
90
89
|
label: `${this.name}`,
|
|
@@ -101,7 +100,6 @@ export default class LwcModuleProvider {
|
|
|
101
100
|
namespace,
|
|
102
101
|
name,
|
|
103
102
|
filename: moduleEntry.entry,
|
|
104
|
-
enableLightningWebSecurityTransforms,
|
|
105
103
|
scopedStyles,
|
|
106
104
|
});
|
|
107
105
|
logger.verbose({
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.12.0-alpha.
|
|
7
|
+
"version": "0.12.0-alpha.2",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@babel/preset-typescript": "^7.23.3",
|
|
34
|
-
"@lwrjs/diagnostics": "0.12.0-alpha.
|
|
35
|
-
"@lwrjs/fs-watch": "0.12.0-alpha.
|
|
36
|
-
"@lwrjs/shared-utils": "0.12.0-alpha.
|
|
34
|
+
"@lwrjs/diagnostics": "0.12.0-alpha.2",
|
|
35
|
+
"@lwrjs/fs-watch": "0.12.0-alpha.2",
|
|
36
|
+
"@lwrjs/shared-utils": "0.12.0-alpha.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@lwrjs/types": "0.12.0-alpha.
|
|
39
|
+
"@lwrjs/types": "0.12.0-alpha.2",
|
|
40
40
|
"typescript": "^4.9.5"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@lwc/module-resolver": ">= 2.x"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
47
|
+
"node": ">=18.0.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "586a2aa659882483af9249dc3db7fe07bc842a25"
|
|
50
50
|
}
|