lwc-convert 1.1.0 → 1.1.1

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.
@@ -19,7 +19,7 @@ const confidence_scorer_1 = require("../utils/confidence-scorer");
19
19
  * Generate LWC meta XML file content
20
20
  */
21
21
  function generateMetaXml(_componentName, options) {
22
- const { apiVersion = '59.0', isExposed = true, targets = ['lightning__RecordPage', 'lightning__AppPage', 'lightning__HomePage'], description, masterLabel, } = options || {};
22
+ const { apiVersion = '62.0', isExposed = true, targets = ['lightning__RecordPage', 'lightning__AppPage', 'lightning__HomePage'], description, masterLabel, } = options || {};
23
23
  let xml = `<?xml version="1.0" encoding="UTF-8"?>
24
24
  <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
25
25
  <apiVersion>${apiVersion}</apiVersion>
@@ -15,7 +15,7 @@ const logger_1 = require("../utils/logger");
15
15
  * Generate LWC meta XML file content
16
16
  */
17
17
  function generateMetaXml(_componentName, options) {
18
- const { apiVersion = '59.0', isExposed = true, targets = ['lightning__RecordPage', 'lightning__AppPage', 'lightning__HomePage'], description, } = options || {};
18
+ const { apiVersion = '62.0', isExposed = true, targets = ['lightning__RecordPage', 'lightning__AppPage', 'lightning__HomePage'], description, } = options || {};
19
19
  let xml = `<?xml version="1.0" encoding="UTF-8"?>
20
20
  <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
21
21
  <apiVersion>${apiVersion}</apiVersion>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lwc-convert",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI tool to convert Salesforce Aura and Visualforce components to Lightning Web Components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",