@lwc/metadata 3.3.3-0 → 3.4.0-0
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/README.md +1 -2
- package/dist/bundle-metadata.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -93,8 +93,7 @@ interface BundleMetadata {
|
|
|
93
93
|
// A list of metadata objects for each file processed in the bundle
|
|
94
94
|
// The order of file is same as order of 'files' in the input config
|
|
95
95
|
files: (HTMLTemplateFile | ScriptFile | CSSFile)[];
|
|
96
|
-
//
|
|
97
|
-
// available in the metadata of the individual file
|
|
96
|
+
// All diagnostic issues discovered while collecting bundle metadata.
|
|
98
97
|
diagnostics: CompilerDiagnostic[];
|
|
99
98
|
}
|
|
100
99
|
```
|
package/dist/bundle-metadata.js
CHANGED
|
@@ -75,7 +75,7 @@ function rollupDiagnostics(files) {
|
|
|
75
75
|
);
|
|
76
76
|
}
|
|
77
77
|
} */
|
|
78
|
-
const version = '3.
|
|
78
|
+
const version = '3.4.0-0';
|
|
79
79
|
function collectBundleMetadata(config) {
|
|
80
80
|
// validateBundleConfig(config);
|
|
81
81
|
const { namespace, name, type, namespaceMapping, files, enableKomaci, strictCSSTokenCollection, enableLuvio, experimentalComplexExpressions, apiVersion, } = config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/metadata",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0-0",
|
|
4
4
|
"description": "Extract metadata about Lightning Web Components modules. This software is provided as-is with no support provided.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"postcss-value-parser": "~4.2.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@lwc/sfdc-compiler-utils": "3.
|
|
31
|
-
"@lwc/errors": "~3.
|
|
32
|
-
"@lwc/template-compiler": "~3.
|
|
30
|
+
"@lwc/sfdc-compiler-utils": "3.4.0-0",
|
|
31
|
+
"@lwc/errors": "~3.4.0",
|
|
32
|
+
"@lwc/template-compiler": "~3.4.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/babel__core": "^7.20.1",
|