@salesforce/plugin-lightning-dev 1.0.26-alpha.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/LICENSE.txt +12 -0
- package/README.md +225 -0
- package/lib/commands/lightning/dev/app.d.ts +29 -0
- package/lib/commands/lightning/dev/app.js +288 -0
- package/lib/commands/lightning/dev/app.js.map +1 -0
- package/lib/commands/lightning/dev/site.d.ts +12 -0
- package/lib/commands/lightning/dev/site.js +77 -0
- package/lib/commands/lightning/dev/site.js.map +1 -0
- package/lib/configMeta.d.ts +28 -0
- package/lib/configMeta.js +74 -0
- package/lib/configMeta.js.map +1 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +8 -0
- package/lib/index.js.map +1 -0
- package/lib/lwc-dev-server/index.d.ts +7 -0
- package/lib/lwc-dev-server/index.js +102 -0
- package/lib/lwc-dev-server/index.js.map +1 -0
- package/lib/shared/configUtils.d.ts +27 -0
- package/lib/shared/configUtils.js +108 -0
- package/lib/shared/configUtils.js.map +1 -0
- package/lib/shared/experience/expSite.d.ts +70 -0
- package/lib/shared/experience/expSite.js +200 -0
- package/lib/shared/experience/expSite.js.map +1 -0
- package/lib/shared/orgUtils.d.ts +14 -0
- package/lib/shared/orgUtils.js +36 -0
- package/lib/shared/orgUtils.js.map +1 -0
- package/lib/shared/previewUtils.d.ts +126 -0
- package/lib/shared/previewUtils.js +397 -0
- package/lib/shared/previewUtils.js.map +1 -0
- package/lib/shared/prompt.d.ts +4 -0
- package/lib/shared/prompt.js +25 -0
- package/lib/shared/prompt.js.map +1 -0
- package/messages/lightning.dev.app.md +171 -0
- package/messages/lightning.dev.site.md +37 -0
- package/messages/shared.utils.md +27 -0
- package/npm-shrinkwrap.json +29260 -0
- package/oclif.lock +15886 -0
- package/oclif.manifest.json +174 -0
- package/package.json +226 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# config-utils.port-desc
|
|
2
|
+
|
|
3
|
+
The port number of the local dev server
|
|
4
|
+
|
|
5
|
+
# config-utils.port-error-message
|
|
6
|
+
|
|
7
|
+
The port number must be a number between 1 and 65535
|
|
8
|
+
|
|
9
|
+
# config-utils.workspace-desc
|
|
10
|
+
|
|
11
|
+
The workspace name of the local lwc dev server
|
|
12
|
+
|
|
13
|
+
# config-utils.workspace-error-message
|
|
14
|
+
|
|
15
|
+
Valid workspace value is "SalesforceCLI" OR "mrt"
|
|
16
|
+
|
|
17
|
+
# config-utils.data-desc
|
|
18
|
+
|
|
19
|
+
The identity data is a data structure that links the local web server's identity token to the user's configured Salesforce orgs.
|
|
20
|
+
|
|
21
|
+
# config-utils.cert-desc
|
|
22
|
+
|
|
23
|
+
The SSL certificate data to be used by the local dev server for secure connections
|
|
24
|
+
|
|
25
|
+
# config-utils.cert-error-message
|
|
26
|
+
|
|
27
|
+
You must provide valid SSL certificate data
|