@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 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
- // Diagnostic issues discovered at the bundle level. Diagnostics discovered at the file level as
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
  ```
@@ -75,7 +75,7 @@ function rollupDiagnostics(files) {
75
75
  );
76
76
  }
77
77
  } */
78
- const version = '3.3.3-0';
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.3-0",
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.3.3-0",
31
- "@lwc/errors": "~3.3.3",
32
- "@lwc/template-compiler": "~3.3.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",