@salesforce/plugin-lightning-dev 3.2.0 → 3.2.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.
@@ -88,9 +88,10 @@
88
88
  "lightning:dev:component": {
89
89
  "aliases": [],
90
90
  "args": {},
91
- "description": "Preview LWC components in isolation. Replacement for: https://developer.salesforce.com/docs/platform/sfvscode-extensions/guide/lwclocaldev.html",
91
+ "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 Development Guide for more information about component development best practices and limitations.",
92
92
  "examples": [
93
- "<%= config.bin %> <%= command.id %>"
93
+ "Select a component and launch the component preview:\n<%= config.bin %> <%= command.id %>",
94
+ "Launch component preview for \"myComponent\":\n<%= config.bin %> <%= command.id %> --name myComponent"
94
95
  ],
95
96
  "flags": {
96
97
  "json": {
@@ -110,10 +111,8 @@
110
111
  },
111
112
  "name": {
112
113
  "char": "n",
113
- "description": "More information about a flag. Don't repeat the summary.",
114
114
  "name": "name",
115
- "required": false,
116
- "summary": "Description of a flag.",
115
+ "summary": "Name of a component to preview.",
117
116
  "hasDynamicHelp": false,
118
117
  "multiple": false,
119
118
  "type": "option"
@@ -122,8 +121,7 @@
122
121
  "char": "o",
123
122
  "name": "target-org",
124
123
  "noCacheDefault": true,
125
- "required": true,
126
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
124
+ "summary": "Username or alias of the target org.",
127
125
  "hasDynamicHelp": true,
128
126
  "multiple": false,
129
127
  "type": "option"
@@ -228,5 +226,5 @@
228
226
  ]
229
227
  }
230
228
  },
231
- "version": "3.2.0"
229
+ "version": "3.2.1"
232
230
  }
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": "3.2.0",
4
+ "version": "3.2.1",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
@@ -9,7 +9,7 @@
9
9
  "@inquirer/select": "^2.4.7",
10
10
  "@lwc/lwc-dev-server": "~11.5.0",
11
11
  "@lwc/sfdc-lwc-compiler": "~11.5.0",
12
- "@lwrjs/api": "0.16.6",
12
+ "@lwrjs/api": "0.16.7",
13
13
  "@oclif/core": "^4.1.0",
14
14
  "@salesforce/core": "^8.6.2",
15
15
  "@salesforce/kit": "^3.1.6",
@@ -243,7 +243,7 @@
243
243
  "yarn": "1.22.22"
244
244
  },
245
245
  "sfdx": {
246
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/3.2.0.crt",
247
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/3.2.0.sig"
246
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/3.2.1.crt",
247
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/3.2.1.sig"
248
248
  }
249
249
  }