@salesforce/plugin-lightning-dev 6.2.14 → 6.2.16
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 +32 -19
- package/lib/commands/lightning/dev/component.js +2 -2
- package/lib/commands/lightning/dev/component.js.map +1 -1
- package/messages/lightning.dev.app.md +9 -5
- package/messages/lightning.dev.component.md +13 -10
- package/messages/lightning.dev.site.md +8 -5
- package/npm-shrinkwrap.json +5 -5
- package/oclif.lock +3 -3
- package/oclif.manifest.json +12 -12
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -215,7 +215,7 @@ GLOBAL FLAGS
|
|
|
215
215
|
DESCRIPTION
|
|
216
216
|
Preview a Lightning Experience app locally and in real-time, without deploying it.
|
|
217
217
|
|
|
218
|
-
Use Local Dev
|
|
218
|
+
Use Local Dev to see local changes to your app in a real-time preview that you don't have to deploy or manually
|
|
219
219
|
refresh. To let you quickly iterate on your Lightning web components (LWCs) and pages, your app preview automatically
|
|
220
220
|
refreshes when Local Dev detects source code changes.
|
|
221
221
|
|
|
@@ -233,8 +233,12 @@ DESCRIPTION
|
|
|
233
233
|
your live app. To update your local version of the app with those changes, you must retrieve them from your org using
|
|
234
234
|
the `sf project retrieve start` command.
|
|
235
235
|
|
|
236
|
+
If you run the command without flags, it displays a list of devices for you to choose from. Then it lists the apps
|
|
237
|
+
that it found in your local DX project for you to choose. Use the --device or --name flags to bypass the questions.
|
|
238
|
+
The command also asks if you want to enable Local Dev in your org if it isn't already.
|
|
239
|
+
|
|
236
240
|
To learn more about Local Dev enablement, considerations, and limitations, see the Lightning Web Components Developer
|
|
237
|
-
Guide.
|
|
241
|
+
Guide (https://developer.salesforce.com/docs/platform/lwc/guide/get-started-test-components.html).
|
|
238
242
|
|
|
239
243
|
EXAMPLES
|
|
240
244
|
Preview the default app for the target org "myOrg" in a desktop environment:
|
|
@@ -250,18 +254,18 @@ EXAMPLES
|
|
|
250
254
|
$ sf lightning dev app --target-org myOrg --device-type ios --device-id "iPhone 15 Pro Max"
|
|
251
255
|
```
|
|
252
256
|
|
|
253
|
-
_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/6.2.
|
|
257
|
+
_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/6.2.16/src/commands/lightning/dev/app.ts)_
|
|
254
258
|
|
|
255
259
|
## `sf lightning dev component`
|
|
256
260
|
|
|
257
|
-
|
|
261
|
+
Preview LWC components in isolation.
|
|
258
262
|
|
|
259
263
|
```
|
|
260
264
|
USAGE
|
|
261
265
|
$ sf lightning dev component -o <value> [--json] [--flags-dir <value>] [-n <value>] [--api-version <value>] [-c]
|
|
262
266
|
|
|
263
267
|
FLAGS
|
|
264
|
-
-c, --client-select Launch component preview without selecting a component
|
|
268
|
+
-c, --client-select Launch component preview without selecting a component.
|
|
265
269
|
-n, --name=<value> Name of a component to preview.
|
|
266
270
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
267
271
|
configuration variable is already set.
|
|
@@ -272,7 +276,7 @@ GLOBAL FLAGS
|
|
|
272
276
|
--json Format output as json.
|
|
273
277
|
|
|
274
278
|
DESCRIPTION
|
|
275
|
-
|
|
279
|
+
Preview LWC components in isolation.
|
|
276
280
|
|
|
277
281
|
Component preview launches an isolated development environment for Lightning Web Components, enabling rapid iteration
|
|
278
282
|
without needing to deploy changes. The server provides real-time previews of your components through hot module
|
|
@@ -286,31 +290,36 @@ DESCRIPTION
|
|
|
286
290
|
- Adding or updating internal component dependencies
|
|
287
291
|
- Modifying static resources used by the component
|
|
288
292
|
|
|
289
|
-
|
|
293
|
+
If you run the command without flags, it displays a list of components that it found in your local DX project for you
|
|
294
|
+
to choose to preview. Use the --name flag to bypass the question. The command also asks if you want to enable Local
|
|
295
|
+
Dev in your org if it isn't already.
|
|
296
|
+
|
|
297
|
+
See the LWC Developer Guide for more information about component development best practices and limitations
|
|
298
|
+
(https://developer.salesforce.com/docs/platform/lwc/guide/get-started-best-practices.html).
|
|
290
299
|
|
|
291
300
|
EXAMPLES
|
|
292
|
-
Select a component and launch the component preview:
|
|
301
|
+
Select a component interactively and launch the component preview; use your default org:
|
|
293
302
|
|
|
294
303
|
$ sf lightning dev component
|
|
295
304
|
|
|
296
|
-
Launch component preview for "myComponent":
|
|
305
|
+
Launch component preview for "myComponent"; use the org with alias "myscratch":
|
|
297
306
|
|
|
298
|
-
$ sf lightning dev component --name myComponent
|
|
307
|
+
$ sf lightning dev component --name myComponent --target-org myscratch
|
|
299
308
|
```
|
|
300
309
|
|
|
301
|
-
_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/6.2.
|
|
310
|
+
_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/6.2.16/src/commands/lightning/dev/component.ts)_
|
|
302
311
|
|
|
303
312
|
## `sf lightning dev site`
|
|
304
313
|
|
|
305
|
-
|
|
314
|
+
Preview an Experience Builder site locally and in real-time, without deploying it.
|
|
306
315
|
|
|
307
316
|
```
|
|
308
317
|
USAGE
|
|
309
318
|
$ sf lightning dev site -o <value> [--flags-dir <value>] [-n <value>] [--api-version <value>]
|
|
310
319
|
|
|
311
320
|
FLAGS
|
|
312
|
-
-n, --name=<value> Name of the Experience Builder site to preview. It
|
|
313
|
-
|
|
321
|
+
-n, --name=<value> Name of the Experience Builder site to preview. It must match a site name from the current
|
|
322
|
+
org.
|
|
314
323
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
315
324
|
configuration variable is already set.
|
|
316
325
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
@@ -319,7 +328,7 @@ GLOBAL FLAGS
|
|
|
319
328
|
--flags-dir=<value> Import flag values from a directory.
|
|
320
329
|
|
|
321
330
|
DESCRIPTION
|
|
322
|
-
|
|
331
|
+
Preview an Experience Builder site locally and in real-time, without deploying it.
|
|
323
332
|
|
|
324
333
|
Enable Local Dev to see local changes to your site in a real-time preview that you don't have to deploy or manually
|
|
325
334
|
refresh. To let you quickly iterate on your Lightning web components (LWCs) and pages, your site preview automatically
|
|
@@ -335,18 +344,22 @@ DESCRIPTION
|
|
|
335
344
|
To apply any other local changes not listed above, you must deploy them to your org using the `sf project deploy
|
|
336
345
|
start` command. Then republish your site and restart the server for the Local Dev experience.
|
|
337
346
|
|
|
347
|
+
If you run the command without flags, it displays a list of Experience Builder sites that it found in your local DX
|
|
348
|
+
project for you to choose from. Use the --name flag to bypass the question. The command also asks if you want to
|
|
349
|
+
enable Local Dev in your org if it isn't already.
|
|
350
|
+
|
|
338
351
|
For more considerations and limitations, see the Lightning Web Components Developer Guide.
|
|
339
352
|
|
|
340
353
|
EXAMPLES
|
|
341
|
-
Select a site to preview from the org "myOrg":
|
|
354
|
+
Select a site to preview from the org with alias "myOrg":
|
|
342
355
|
|
|
343
356
|
$ sf lightning dev site --target-org myOrg
|
|
344
357
|
|
|
345
|
-
Preview the site "Partner Central" from
|
|
358
|
+
Preview the site "Partner Central" from your default org:
|
|
346
359
|
|
|
347
|
-
$ sf lightning dev site --name "Partner Central"
|
|
360
|
+
$ sf lightning dev site --name "Partner Central"
|
|
348
361
|
```
|
|
349
362
|
|
|
350
|
-
_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/6.2.
|
|
363
|
+
_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/6.2.16/src/commands/lightning/dev/site.ts)_
|
|
351
364
|
|
|
352
365
|
<!-- commandsstop -->
|
|
@@ -69,9 +69,9 @@ export default class LightningDevComponent extends SfCommand {
|
|
|
69
69
|
logger.debug('Determining Local Dev Server url');
|
|
70
70
|
let ldpServerUrl;
|
|
71
71
|
// In Code Builder, we cannot go to localhost - we need to use a proxy URI to get to the ldpServer
|
|
72
|
-
if (process.env.SF_CONTAINER_MODE && process.env.
|
|
72
|
+
if (process.env.SF_CONTAINER_MODE && process.env.CODE_BUILDER_PROXY_URI) {
|
|
73
73
|
logger.debug('In Code Builder Mode - using proxy URI');
|
|
74
|
-
ldpServerUrl = process.env.
|
|
74
|
+
ldpServerUrl = process.env.CODE_BUILDER_PROXY_URI.replace('https://', 'ws://').replace('{{port}}', `${serverPorts.httpPort}`);
|
|
75
75
|
}
|
|
76
76
|
else {
|
|
77
77
|
// Default behavior
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/commands/lightning/dev/component.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/commands/lightning/dev/component.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,7 +4,7 @@ Preview a Lightning Experience app locally and in real-time, without deploying i
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
Use Local Dev
|
|
7
|
+
Use Local Dev to see local changes to your app in a real-time preview that you don't have to deploy or manually refresh. To let you quickly iterate on your Lightning web components (LWCs) and pages, your app preview automatically refreshes when Local Dev detects source code changes.
|
|
8
8
|
|
|
9
9
|
When you edit these local files with Local Dev enabled, your org automatically reflects these changes.
|
|
10
10
|
|
|
@@ -17,7 +17,9 @@ To apply any other local changes not listed above, you must deploy them to your
|
|
|
17
17
|
|
|
18
18
|
When you make changes directly in your org (like saving new component properties), they're automatically deployed to your live app. To update your local version of the app with those changes, you must retrieve them from your org using the `sf project retrieve start` command.
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
If you run the command without flags, it displays a list of devices for you to choose from. Then it lists the apps that it found in your local DX project for you to choose. Use the --device or --name flags to bypass the questions. The command also asks if you want to enable Local Dev in your org if it isn't already.
|
|
21
|
+
|
|
22
|
+
To learn more about Local Dev enablement, considerations, and limitations, see the Lightning Web Components Developer Guide (https://developer.salesforce.com/docs/platform/lwc/guide/get-started-test-components.html).
|
|
21
23
|
|
|
22
24
|
# flags.name.summary
|
|
23
25
|
|
|
@@ -33,15 +35,15 @@ ID of the mobile device to display the preview if device type is set to `ios` or
|
|
|
33
35
|
|
|
34
36
|
# error.fetching.app-id
|
|
35
37
|
|
|
36
|
-
Unable to determine App Id for %s
|
|
38
|
+
Unable to determine App Id for %s.
|
|
37
39
|
|
|
38
40
|
# error.device.notfound
|
|
39
41
|
|
|
40
|
-
Unable to find device %s
|
|
42
|
+
Unable to find device %s.
|
|
41
43
|
|
|
42
44
|
# error.device.google.play
|
|
43
45
|
|
|
44
|
-
Google Play devices
|
|
46
|
+
Google Play devices aren't supported. %s is a Google Play device. Use a Google APIs device instead.
|
|
45
47
|
|
|
46
48
|
# spinner.device.boot
|
|
47
49
|
|
|
@@ -87,7 +89,9 @@ Note: Your desktop browser requires additional configuration to trust the local
|
|
|
87
89
|
|
|
88
90
|
- Preview the default app for the target org "myOrg" in a desktop environment:
|
|
89
91
|
<%= config.bin %> <%= command.id %> --target-org myOrg
|
|
92
|
+
|
|
90
93
|
- Preview the app "myApp" for the target org "myOrg" in a desktop environment:
|
|
91
94
|
<%= config.bin %> <%= command.id %> --name MyApp --target-org myOrg --device-type desktop
|
|
95
|
+
|
|
92
96
|
- Preview the default app for target org "myOrg" on an iOS device:
|
|
93
97
|
<%= config.bin %> <%= command.id %> --target-org myOrg --device-type ios --device-id "iPhone 15 Pro Max"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Preview LWC components in isolation.
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
@@ -14,7 +14,9 @@ When running the development server, these changes are immediately reflected:
|
|
|
14
14
|
- Adding or updating internal component dependencies
|
|
15
15
|
- Modifying static resources used by the component
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
If you run the command without flags, it displays a list of components that it found in your local DX project for you to choose to preview. Use the --name flag to bypass the question. The command also asks if you want to enable Local Dev in your org if it isn't already.
|
|
18
|
+
|
|
19
|
+
See the LWC Developer Guide for more information about component development best practices and limitations (https://developer.salesforce.com/docs/platform/lwc/guide/get-started-best-practices.html).
|
|
18
20
|
|
|
19
21
|
# flags.name.summary
|
|
20
22
|
|
|
@@ -22,27 +24,28 @@ Name of a component to preview.
|
|
|
22
24
|
|
|
23
25
|
# flags.client-select.summary
|
|
24
26
|
|
|
25
|
-
Launch component preview without selecting a component
|
|
27
|
+
Launch component preview without selecting a component.
|
|
26
28
|
|
|
27
29
|
# error.directory
|
|
28
30
|
|
|
29
|
-
Unable to find components
|
|
31
|
+
Unable to find components.
|
|
30
32
|
|
|
31
33
|
# error.component
|
|
32
34
|
|
|
33
|
-
Unable to determine component name
|
|
35
|
+
Unable to determine component name.
|
|
34
36
|
|
|
35
37
|
# error.component-metadata
|
|
36
38
|
|
|
37
|
-
Failed to parse component metadata at: %s
|
|
39
|
+
Failed to parse component metadata at: %s.
|
|
38
40
|
|
|
39
41
|
# error.component-not-found
|
|
40
42
|
|
|
41
|
-
Unable to find component with name: %s
|
|
43
|
+
Unable to find component with name: %s.
|
|
42
44
|
|
|
43
45
|
# examples
|
|
44
46
|
|
|
45
|
-
- Select a component and launch the component preview:
|
|
47
|
+
- Select a component interactively and launch the component preview; use your default org:
|
|
46
48
|
<%= config.bin %> <%= command.id %>
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
|
|
50
|
+
- Launch component preview for "myComponent"; use the org with alias "myscratch":
|
|
51
|
+
<%= config.bin %> <%= command.id %> --name myComponent --target-org myscratch
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Preview an Experience Builder site locally and in real-time, without deploying it.
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
@@ -15,15 +15,18 @@ When you edit these local files with Local Dev enabled, your org automatically r
|
|
|
15
15
|
|
|
16
16
|
To apply any other local changes not listed above, you must deploy them to your org using the `sf project deploy start` command. Then republish your site and restart the server for the Local Dev experience.
|
|
17
17
|
|
|
18
|
+
If you run the command without flags, it displays a list of Experience Builder sites that it found in your local DX project for you to choose from. Use the --name flag to bypass the question. The command also asks if you want to enable Local Dev in your org if it isn't already.
|
|
19
|
+
|
|
18
20
|
For more considerations and limitations, see the Lightning Web Components Developer Guide.
|
|
19
21
|
|
|
20
22
|
# flags.name.summary
|
|
21
23
|
|
|
22
|
-
Name of the Experience Builder site to preview. It
|
|
24
|
+
Name of the Experience Builder site to preview. It must match a site name from the current org.
|
|
23
25
|
|
|
24
26
|
# examples
|
|
25
27
|
|
|
26
|
-
- Select a site to preview from the org "myOrg":
|
|
28
|
+
- Select a site to preview from the org with alias "myOrg":
|
|
27
29
|
<%= config.bin %> <%= command.id %> --target-org myOrg
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
|
|
31
|
+
- Preview the site "Partner Central" from your default org:
|
|
32
|
+
<%= config.bin %> <%= command.id %> --name "Partner Central"
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-lightning-dev",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.16",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-lightning-dev",
|
|
9
|
-
"version": "6.2.
|
|
9
|
+
"version": "6.2.16",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -23201,9 +23201,9 @@
|
|
|
23201
23201
|
}
|
|
23202
23202
|
},
|
|
23203
23203
|
"node_modules/rollup": {
|
|
23204
|
-
"version": "2.
|
|
23205
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.
|
|
23206
|
-
"integrity": "sha512-
|
|
23204
|
+
"version": "2.80.0",
|
|
23205
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.80.0.tgz",
|
|
23206
|
+
"integrity": "sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ==",
|
|
23207
23207
|
"license": "MIT",
|
|
23208
23208
|
"bin": {
|
|
23209
23209
|
"rollup": "dist/bin/rollup"
|
package/oclif.lock
CHANGED
|
@@ -10980,9 +10980,9 @@ rollup-pluginutils@^2.8.1:
|
|
|
10980
10980
|
estree-walker "^0.6.1"
|
|
10981
10981
|
|
|
10982
10982
|
rollup@^2.79.2:
|
|
10983
|
-
version "2.
|
|
10984
|
-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.
|
|
10985
|
-
integrity sha512-
|
|
10983
|
+
version "2.80.0"
|
|
10984
|
+
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.80.0.tgz#a82efc15b748e986a7c76f0f771221b1fa108a2c"
|
|
10985
|
+
integrity sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ==
|
|
10986
10986
|
optionalDependencies:
|
|
10987
10987
|
fsevents "~2.3.2"
|
|
10988
10988
|
|
package/oclif.manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"lightning:dev:app": {
|
|
4
4
|
"aliases": [],
|
|
5
5
|
"args": {},
|
|
6
|
-
"description": "Use Local Dev
|
|
6
|
+
"description": "Use Local Dev to see local changes to your app in a real-time preview that you don't have to deploy or manually refresh. To let you quickly iterate on your Lightning web components (LWCs) and pages, your app preview automatically refreshes when Local Dev detects source code changes.\n\nWhen you edit these local files with Local Dev enabled, your org automatically reflects these changes.\n\n- Basic HTML and CSS edits to LWCs\n- JavaScript changes to LWCs that don't affect the component's public API\n- Importing new custom LWCs\n- Importing another instance of an existing LWC\n\nTo apply any other local changes not listed above, you must deploy them to your org using the `sf project deploy start` command.\n\nWhen you make changes directly in your org (like saving new component properties), they're automatically deployed to your live app. To update your local version of the app with those changes, you must retrieve them from your org using the `sf project retrieve start` command.\n\nIf you run the command without flags, it displays a list of devices for you to choose from. Then it lists the apps that it found in your local DX project for you to choose. Use the --device or --name flags to bypass the questions. The command also asks if you want to enable Local Dev in your org if it isn't already.\n\nTo learn more about Local Dev enablement, considerations, and limitations, see the Lightning Web Components Developer Guide (https://developer.salesforce.com/docs/platform/lwc/guide/get-started-test-components.html).",
|
|
7
7
|
"examples": [
|
|
8
8
|
"Preview the default app for the target org \"myOrg\" in a desktop environment:\n<%= config.bin %> <%= command.id %> --target-org myOrg",
|
|
9
9
|
"Preview the app \"myApp\" for the target org \"myOrg\" in a desktop environment:\n<%= config.bin %> <%= command.id %> --name MyApp --target-org myOrg --device-type desktop",
|
|
@@ -95,10 +95,10 @@
|
|
|
95
95
|
"lightning:dev:component": {
|
|
96
96
|
"aliases": [],
|
|
97
97
|
"args": {},
|
|
98
|
-
"description": "Component preview launches an isolated development environment for Lightning Web Components, enabling rapid iteration without needing to deploy changes. The server provides real-time previews of your components through hot module replacement (HMR), automatically refreshing the view when source files are modified.\n\nWhen running the development server, these changes are immediately reflected:\n\n- Component template (HTML) modifications\n- Styling updates in component CSS files\n- JavaScript logic changes that don't modify the component's API\n- Adding or updating internal component dependencies\n- Modifying static resources used by the component\n\nSee the LWC
|
|
98
|
+
"description": "Component preview launches an isolated development environment for Lightning Web Components, enabling rapid iteration without needing to deploy changes. The server provides real-time previews of your components through hot module replacement (HMR), automatically refreshing the view when source files are modified.\n\nWhen running the development server, these changes are immediately reflected:\n\n- Component template (HTML) modifications\n- Styling updates in component CSS files\n- JavaScript logic changes that don't modify the component's API\n- Adding or updating internal component dependencies\n- Modifying static resources used by the component\n\nIf you run the command without flags, it displays a list of components that it found in your local DX project for you to choose to preview. Use the --name flag to bypass the question. The command also asks if you want to enable Local Dev in your org if it isn't already.\n\nSee the LWC Developer Guide for more information about component development best practices and limitations (https://developer.salesforce.com/docs/platform/lwc/guide/get-started-best-practices.html).",
|
|
99
99
|
"examples": [
|
|
100
|
-
"Select a component and launch the component preview:\n<%= config.bin %> <%= command.id %>",
|
|
101
|
-
"Launch component preview for \"myComponent\":\n<%= config.bin %> <%= command.id %> --name myComponent"
|
|
100
|
+
"Select a component interactively and launch the component preview; use your default org:\n<%= config.bin %> <%= command.id %>",
|
|
101
|
+
"Launch component preview for \"myComponent\"; use the org with alias \"myscratch\":\n<%= config.bin %> <%= command.id %> --name myComponent --target-org myscratch"
|
|
102
102
|
],
|
|
103
103
|
"flags": {
|
|
104
104
|
"json": {
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"client-select": {
|
|
135
135
|
"char": "c",
|
|
136
136
|
"name": "client-select",
|
|
137
|
-
"summary": "Launch component preview without selecting a component",
|
|
137
|
+
"summary": "Launch component preview without selecting a component.",
|
|
138
138
|
"allowNo": false,
|
|
139
139
|
"type": "boolean"
|
|
140
140
|
},
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"pluginName": "@salesforce/plugin-lightning-dev",
|
|
157
157
|
"pluginType": "core",
|
|
158
158
|
"strict": true,
|
|
159
|
-
"summary": "
|
|
159
|
+
"summary": "Preview LWC components in isolation.",
|
|
160
160
|
"enableJsonFlag": true,
|
|
161
161
|
"isESM": true,
|
|
162
162
|
"relativePath": [
|
|
@@ -179,10 +179,10 @@
|
|
|
179
179
|
"lightning:dev:site": {
|
|
180
180
|
"aliases": [],
|
|
181
181
|
"args": {},
|
|
182
|
-
"description": "Enable Local Dev to see local changes to your site in a real-time preview that you don't have to deploy or manually refresh. To let you quickly iterate on your Lightning web components (LWCs) and pages, your site preview automatically refreshes when Local Dev detects source code changes.\n\nWhen you edit these local files with Local Dev enabled, your org automatically reflects these changes.\n\n- Basic HTML and CSS edits to LWCs\n- JavaScript changes to LWCs that don't affect the component's public API\n- Importing new custom LWCs\n- Importing another instance of an existing LWC\n\nTo apply any other local changes not listed above, you must deploy them to your org using the `sf project deploy start` command. Then republish your site and restart the server for the Local Dev experience.\n\nFor more considerations and limitations, see the Lightning Web Components Developer Guide.",
|
|
182
|
+
"description": "Enable Local Dev to see local changes to your site in a real-time preview that you don't have to deploy or manually refresh. To let you quickly iterate on your Lightning web components (LWCs) and pages, your site preview automatically refreshes when Local Dev detects source code changes.\n\nWhen you edit these local files with Local Dev enabled, your org automatically reflects these changes.\n\n- Basic HTML and CSS edits to LWCs\n- JavaScript changes to LWCs that don't affect the component's public API\n- Importing new custom LWCs\n- Importing another instance of an existing LWC\n\nTo apply any other local changes not listed above, you must deploy them to your org using the `sf project deploy start` command. Then republish your site and restart the server for the Local Dev experience.\n\nIf you run the command without flags, it displays a list of Experience Builder sites that it found in your local DX project for you to choose from. Use the --name flag to bypass the question. The command also asks if you want to enable Local Dev in your org if it isn't already.\n\nFor more considerations and limitations, see the Lightning Web Components Developer Guide.",
|
|
183
183
|
"examples": [
|
|
184
|
-
"Select a site to preview from the org \"myOrg\":\n<%= config.bin %> <%= command.id %> --target-org myOrg",
|
|
185
|
-
"Preview the site \"Partner Central\" from
|
|
184
|
+
"Select a site to preview from the org with alias \"myOrg\":\n<%= config.bin %> <%= command.id %> --target-org myOrg",
|
|
185
|
+
"Preview the site \"Partner Central\" from your default org:\n<%= config.bin %> <%= command.id %> --name \"Partner Central\""
|
|
186
186
|
],
|
|
187
187
|
"flags": {
|
|
188
188
|
"flags-dir": {
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"name": {
|
|
197
197
|
"char": "n",
|
|
198
198
|
"name": "name",
|
|
199
|
-
"summary": "Name of the Experience Builder site to preview. It
|
|
199
|
+
"summary": "Name of the Experience Builder site to preview. It must match a site name from the current org.",
|
|
200
200
|
"hasDynamicHelp": false,
|
|
201
201
|
"multiple": false,
|
|
202
202
|
"type": "option"
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
"pluginName": "@salesforce/plugin-lightning-dev",
|
|
227
227
|
"pluginType": "core",
|
|
228
228
|
"strict": true,
|
|
229
|
-
"summary": "
|
|
229
|
+
"summary": "Preview an Experience Builder site locally and in real-time, without deploying it.",
|
|
230
230
|
"enableJsonFlag": false,
|
|
231
231
|
"isESM": true,
|
|
232
232
|
"relativePath": [
|
|
@@ -247,5 +247,5 @@
|
|
|
247
247
|
]
|
|
248
248
|
}
|
|
249
249
|
},
|
|
250
|
-
"version": "6.2.
|
|
250
|
+
"version": "6.2.16"
|
|
251
251
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-lightning-dev",
|
|
3
3
|
"description": "Lightning development tools for LEX, Mobile, and Experience Sites",
|
|
4
|
-
"version": "6.2.
|
|
4
|
+
"version": "6.2.16",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"topics": {
|
|
81
81
|
"lightning": {
|
|
82
82
|
"external": true,
|
|
83
|
+
"description": "Commands to work with Lightning applications.",
|
|
83
84
|
"subtopics": {
|
|
84
85
|
"dev": {
|
|
85
86
|
"description": "Preview applications and sites locally and in real-time, without deploying them."
|
|
@@ -256,7 +257,7 @@
|
|
|
256
257
|
"yarn": "1.22.22"
|
|
257
258
|
},
|
|
258
259
|
"sfdx": {
|
|
259
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/6.2.
|
|
260
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/6.2.
|
|
260
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/6.2.16.crt",
|
|
261
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/6.2.16.sig"
|
|
261
262
|
}
|
|
262
263
|
}
|