@salesforce/plugin-lightning-dev 3.1.1 → 3.2.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/README.md +37 -2
- package/lib/commands/lightning/dev/component.d.ts +14 -0
- package/lib/commands/lightning/dev/component.js +41 -0
- package/lib/commands/lightning/dev/component.js.map +1 -0
- package/messages/lightning.dev.component.md +19 -0
- package/npm-shrinkwrap.json +213 -213
- package/oclif.lock +242 -242
- package/oclif.manifest.json +72 -1
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -85,6 +85,77 @@
|
|
|
85
85
|
"app:dev:lightning"
|
|
86
86
|
]
|
|
87
87
|
},
|
|
88
|
+
"lightning:dev:component": {
|
|
89
|
+
"aliases": [],
|
|
90
|
+
"args": {},
|
|
91
|
+
"description": "Preview LWC components in isolation. Replacement for: https://developer.salesforce.com/docs/platform/sfvscode-extensions/guide/lwclocaldev.html",
|
|
92
|
+
"examples": [
|
|
93
|
+
"<%= config.bin %> <%= command.id %>"
|
|
94
|
+
],
|
|
95
|
+
"flags": {
|
|
96
|
+
"json": {
|
|
97
|
+
"description": "Format output as json.",
|
|
98
|
+
"helpGroup": "GLOBAL",
|
|
99
|
+
"name": "json",
|
|
100
|
+
"allowNo": false,
|
|
101
|
+
"type": "boolean"
|
|
102
|
+
},
|
|
103
|
+
"flags-dir": {
|
|
104
|
+
"helpGroup": "GLOBAL",
|
|
105
|
+
"name": "flags-dir",
|
|
106
|
+
"summary": "Import flag values from a directory.",
|
|
107
|
+
"hasDynamicHelp": false,
|
|
108
|
+
"multiple": false,
|
|
109
|
+
"type": "option"
|
|
110
|
+
},
|
|
111
|
+
"name": {
|
|
112
|
+
"char": "n",
|
|
113
|
+
"description": "More information about a flag. Don't repeat the summary.",
|
|
114
|
+
"name": "name",
|
|
115
|
+
"required": false,
|
|
116
|
+
"summary": "Description of a flag.",
|
|
117
|
+
"hasDynamicHelp": false,
|
|
118
|
+
"multiple": false,
|
|
119
|
+
"type": "option"
|
|
120
|
+
},
|
|
121
|
+
"target-org": {
|
|
122
|
+
"char": "o",
|
|
123
|
+
"name": "target-org",
|
|
124
|
+
"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.",
|
|
127
|
+
"hasDynamicHelp": true,
|
|
128
|
+
"multiple": false,
|
|
129
|
+
"type": "option"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"hasDynamicHelp": true,
|
|
133
|
+
"hiddenAliases": [],
|
|
134
|
+
"id": "lightning:dev:component",
|
|
135
|
+
"pluginAlias": "@salesforce/plugin-lightning-dev",
|
|
136
|
+
"pluginName": "@salesforce/plugin-lightning-dev",
|
|
137
|
+
"pluginType": "core",
|
|
138
|
+
"strict": true,
|
|
139
|
+
"summary": "Preview LWC components in isolation.",
|
|
140
|
+
"enableJsonFlag": true,
|
|
141
|
+
"isESM": true,
|
|
142
|
+
"relativePath": [
|
|
143
|
+
"lib",
|
|
144
|
+
"commands",
|
|
145
|
+
"lightning",
|
|
146
|
+
"dev",
|
|
147
|
+
"component.js"
|
|
148
|
+
],
|
|
149
|
+
"aliasPermutations": [],
|
|
150
|
+
"permutations": [
|
|
151
|
+
"lightning:dev:component",
|
|
152
|
+
"dev:lightning:component",
|
|
153
|
+
"dev:component:lightning",
|
|
154
|
+
"lightning:component:dev",
|
|
155
|
+
"component:lightning:dev",
|
|
156
|
+
"component:dev:lightning"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
88
159
|
"lightning:dev:site": {
|
|
89
160
|
"aliases": [],
|
|
90
161
|
"args": {},
|
|
@@ -157,5 +228,5 @@
|
|
|
157
228
|
]
|
|
158
229
|
}
|
|
159
230
|
},
|
|
160
|
-
"version": "3.
|
|
231
|
+
"version": "3.2.0"
|
|
161
232
|
}
|
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.
|
|
4
|
+
"version": "3.2.0",
|
|
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.
|
|
12
|
+
"@lwrjs/api": "0.16.6",
|
|
13
13
|
"@oclif/core": "^4.1.0",
|
|
14
14
|
"@salesforce/core": "^8.6.2",
|
|
15
15
|
"@salesforce/kit": "^3.1.6",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@oclif/plugin-command-snapshot": "^5.2.19",
|
|
25
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
25
|
+
"@salesforce/cli-plugins-testkit": "^5.3.39",
|
|
26
26
|
"@salesforce/dev-scripts": "^10.2.11",
|
|
27
27
|
"@salesforce/plugin-command-reference": "^3.1.37",
|
|
28
28
|
"@types/node-fetch": "^2.6.11",
|
|
@@ -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.
|
|
247
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-lightning-dev/3.
|
|
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"
|
|
248
248
|
}
|
|
249
249
|
}
|