@salesforce/plugin-lightning-dev 4.4.12 → 4.4.13-codebuilder.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.
- package/README.md +9 -8
- package/lib/commands/lightning/dev/component.d.ts +10 -2
- package/lib/commands/lightning/dev/component.js +50 -29
- package/lib/commands/lightning/dev/component.js.map +1 -1
- package/lib/shared/previewUtils.d.ts +11 -0
- package/lib/shared/previewUtils.js +18 -0
- package/lib/shared/previewUtils.js.map +1 -1
- package/npm-shrinkwrap.json +1926 -1016
- package/oclif.lock +959 -869
- package/oclif.manifest.json +8 -1
- package/package.json +12 -12
package/oclif.manifest.json
CHANGED
|
@@ -117,6 +117,13 @@
|
|
|
117
117
|
"multiple": false,
|
|
118
118
|
"type": "option"
|
|
119
119
|
},
|
|
120
|
+
"api-version": {
|
|
121
|
+
"description": "Override the api version used for api requests made by this command",
|
|
122
|
+
"name": "api-version",
|
|
123
|
+
"hasDynamicHelp": false,
|
|
124
|
+
"multiple": false,
|
|
125
|
+
"type": "option"
|
|
126
|
+
},
|
|
120
127
|
"client-select": {
|
|
121
128
|
"char": "c",
|
|
122
129
|
"name": "client-select",
|
|
@@ -246,5 +253,5 @@
|
|
|
246
253
|
]
|
|
247
254
|
}
|
|
248
255
|
},
|
|
249
|
-
"version": "4.4.
|
|
256
|
+
"version": "4.4.13-codebuilder.1"
|
|
250
257
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-lightning-dev",
|
|
3
3
|
"description": "Lightning development tools for LEX, Mobile, and Experience Sites",
|
|
4
|
-
"version": "4.4.
|
|
4
|
+
"version": "4.4.13-codebuilder.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@inquirer/prompts": "^5.3.8",
|
|
9
9
|
"@inquirer/select": "^2.4.7",
|
|
10
|
-
"@lwc/lwc-dev-server": "~13.
|
|
11
|
-
"@lwc/sfdc-lwc-compiler": "
|
|
10
|
+
"@lwc/lwc-dev-server": "~13.1.2",
|
|
11
|
+
"@lwc/sfdc-lwc-compiler": "^13.1.2",
|
|
12
12
|
"@lwrjs/api": "0.18.3",
|
|
13
13
|
"@oclif/core": "^4.5.0",
|
|
14
14
|
"@salesforce/core": "^8.19.1",
|
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
"axios": "^1.11.0",
|
|
19
19
|
"glob": "^10.4.5",
|
|
20
20
|
"lightning-base-components": "1.27.2-alpha",
|
|
21
|
-
"lwc": "~8.
|
|
21
|
+
"lwc": "~8.21.2",
|
|
22
22
|
"node-fetch": "^3.3.2",
|
|
23
23
|
"open": "^10.2.0",
|
|
24
24
|
"xml2js": "^0.6.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@oclif/plugin-command-snapshot": "^5.3.
|
|
27
|
+
"@oclif/plugin-command-snapshot": "^5.3.5",
|
|
28
28
|
"@salesforce/cli-plugins-testkit": "^5.3.39",
|
|
29
29
|
"@salesforce/dev-scripts": "^11.0.2",
|
|
30
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
30
|
+
"@salesforce/plugin-command-reference": "^3.1.65",
|
|
31
31
|
"@types/node-fetch": "^2.6.13",
|
|
32
32
|
"@types/xml2js": "^0.4.14",
|
|
33
33
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"eslint-plugin-sf-plugin": "^1.20.30",
|
|
40
40
|
"eslint-plugin-unicorn": "^50.0.1",
|
|
41
41
|
"esmock": "^2.7.1",
|
|
42
|
-
"oclif": "^4.22.
|
|
42
|
+
"oclif": "^4.22.11",
|
|
43
43
|
"ts-node": "^10.9.2",
|
|
44
44
|
"typescript": "^5.5.4"
|
|
45
45
|
},
|
|
@@ -237,8 +237,8 @@
|
|
|
237
237
|
"The 'versionToTagMappings' section defines the mapping between released tags for our CLI plugin and the org version that each tag supports."
|
|
238
238
|
],
|
|
239
239
|
"target": {
|
|
240
|
-
"versionNumber": "
|
|
241
|
-
"matchingDevServerVersion": "~13.
|
|
240
|
+
"versionNumber": "65.0",
|
|
241
|
+
"matchingDevServerVersion": "~13.1.2"
|
|
242
242
|
},
|
|
243
243
|
"versionToTagMappings": [
|
|
244
244
|
{
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
"tagName": "prerelease"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
|
-
"versionNumber": "
|
|
257
|
+
"versionNumber": "65.0",
|
|
258
258
|
"tagName": "next"
|
|
259
259
|
}
|
|
260
260
|
]
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
"yarn": "1.22.22"
|
|
267
267
|
},
|
|
268
268
|
"sfdx": {
|
|
269
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/4.4.
|
|
270
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/4.4.
|
|
269
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/4.4.13-codebuilder.1.crt",
|
|
270
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/4.4.13-codebuilder.1.sig"
|
|
271
271
|
}
|
|
272
272
|
}
|