Skip to content

Commit 1569365

Browse files
committed
chore(release): 56.15.1 [skip ci]
1 parent 764272f commit 1569365

3 files changed

Lines changed: 39 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [56.15.1](https://github.com/salesforcecli/plugin-templates/compare/56.15.0...56.15.1) (2026-03-31)
2+
3+
### Bug Fixes
4+
5+
- docs update ([5e6a5f5](https://github.com/salesforcecli/plugin-templates/commit/5e6a5f58f435df235ae9c2e5cc402391fb8e7ef3))
6+
17
# [56.15.0](https://github.com/salesforcecli/plugin-templates/compare/56.14.0...56.15.0) (2026-03-31)
28

39
### Bug Fixes

README.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ FLAG DESCRIPTIONS
177177
directory.
178178
```
179179

180-
_See code: [src/commands/template/generate/analytics/template.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/analytics/template.ts)_
180+
_See code: [src/commands/template/generate/analytics/template.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/analytics/template.ts)_
181181

182182
## `sf template generate apex class`
183183

@@ -237,7 +237,7 @@ FLAG DESCRIPTIONS
237237
Supplied parameter values or default values are filled into a copy of the template.
238238
```
239239

240-
_See code: [src/commands/template/generate/apex/class.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/apex/class.ts)_
240+
_See code: [src/commands/template/generate/apex/class.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/apex/class.ts)_
241241

242242
## `sf template generate apex trigger`
243243

@@ -307,7 +307,7 @@ FLAG DESCRIPTIONS
307307
Supplied parameter values or default values are filled into a copy of the template.
308308
```
309309

310-
_See code: [src/commands/template/generate/apex/trigger.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/apex/trigger.ts)_
310+
_See code: [src/commands/template/generate/apex/trigger.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/apex/trigger.ts)_
311311

312312
## `sf template generate digital-experience site`
313313

@@ -361,7 +361,7 @@ FLAG DESCRIPTIONS
361361
project, defaults to the current directory.
362362
```
363363

364-
_See code: [src/commands/template/generate/digital-experience/site.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/digital-experience/site.ts)_
364+
_See code: [src/commands/template/generate/digital-experience/site.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/digital-experience/site.ts)_
365365

366366
## `sf template generate flexipage`
367367

@@ -443,7 +443,7 @@ FLAG DESCRIPTIONS
443443
'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
444444
```
445445

446-
_See code: [src/commands/template/generate/flexipage/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/flexipage/index.ts)_
446+
_See code: [src/commands/template/generate/flexipage/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/flexipage/index.ts)_
447447

448448
## `sf template generate lightning app`
449449

@@ -497,11 +497,11 @@ FLAG DESCRIPTIONS
497497
-t, --template=DefaultLightningApp Template to use for file creation.
498498
499499
Supplied parameter values or default values are filled into a copy of the template. For Lightning Web Components, if
500-
not specified, the CLI automatically selects the template based on the project's sfdx-project.json
501-
"defaultLwcLanguage" field: TypeScript template for "typescript", JavaScript template for "javascript".
500+
this flag isn't specified, the CLI command automatically selects the template based on the "defaultLwcLanguage"
501+
field in the DX project's "sfdx-project.json" file.
502502
```
503503

504-
_See code: [src/commands/template/generate/lightning/app.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/lightning/app.ts)_
504+
_See code: [src/commands/template/generate/lightning/app.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/lightning/app.ts)_
505505

506506
## `sf template generate lightning component`
507507

@@ -557,7 +557,7 @@ EXAMPLES
557557
558558
$ sf template generate lightning component --name mycomponent --type lwc --output-dir force-app/main/default/lwc
559559
560-
Generate a TypeScript Lightning web component:
560+
Generate a TypeScript Lightning Web Component:
561561
562562
$ sf template generate lightning component --name mycomponent --type lwc --template typescript
563563
@@ -574,11 +574,11 @@ FLAG DESCRIPTIONS
574574
-t, --template=default|analyticsDashboard|analyticsDashboardWithStep|typescript Template to use for file creation.
575575
576576
Supplied parameter values or default values are filled into a copy of the template. For Lightning Web Components, if
577-
not specified, the CLI automatically selects the template based on the project's sfdx-project.json
578-
"defaultLwcLanguage" field: TypeScript template for "typescript", JavaScript template for "javascript".
577+
this flag isn't specified, the CLI command automatically selects the template based on the "defaultLwcLanguage"
578+
field in the DX project's "sfdx-project.json" file.
579579
```
580580

581-
_See code: [src/commands/template/generate/lightning/component.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/lightning/component.ts)_
581+
_See code: [src/commands/template/generate/lightning/component.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/lightning/component.ts)_
582582

583583
## `sf template generate lightning event`
584584

@@ -632,11 +632,11 @@ FLAG DESCRIPTIONS
632632
-t, --template=DefaultLightningEvt Template to use for file creation.
633633
634634
Supplied parameter values or default values are filled into a copy of the template. For Lightning Web Components, if
635-
not specified, the CLI automatically selects the template based on the project's sfdx-project.json
636-
"defaultLwcLanguage" field: TypeScript template for "typescript", JavaScript template for "javascript".
635+
this flag isn't specified, the CLI command automatically selects the template based on the "defaultLwcLanguage"
636+
field in the DX project's "sfdx-project.json" file.
637637
```
638638

639-
_See code: [src/commands/template/generate/lightning/event.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/lightning/event.ts)_
639+
_See code: [src/commands/template/generate/lightning/event.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/lightning/event.ts)_
640640

641641
## `sf template generate lightning interface`
642642

@@ -690,11 +690,11 @@ FLAG DESCRIPTIONS
690690
-t, --template=DefaultLightningIntf Template to use for file creation.
691691
692692
Supplied parameter values or default values are filled into a copy of the template. For Lightning Web Components, if
693-
not specified, the CLI automatically selects the template based on the project's sfdx-project.json
694-
"defaultLwcLanguage" field: TypeScript template for "typescript", JavaScript template for "javascript".
693+
this flag isn't specified, the CLI command automatically selects the template based on the "defaultLwcLanguage"
694+
field in the DX project's "sfdx-project.json" file.
695695
```
696696

697-
_See code: [src/commands/template/generate/lightning/interface.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/lightning/interface.ts)_
697+
_See code: [src/commands/template/generate/lightning/interface.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/lightning/interface.ts)_
698698

699699
## `sf template generate lightning test`
700700

@@ -748,11 +748,11 @@ FLAG DESCRIPTIONS
748748
-t, --template=DefaultLightningTest Template to use for file creation.
749749
750750
Supplied parameter values or default values are filled into a copy of the template. For Lightning Web Components, if
751-
not specified, the CLI automatically selects the template based on the project's sfdx-project.json
752-
"defaultLwcLanguage" field: TypeScript template for "typescript", JavaScript template for "javascript".
751+
this flag isn't specified, the CLI command automatically selects the template based on the "defaultLwcLanguage"
752+
field in the DX project's "sfdx-project.json" file.
753753
```
754754

755-
_See code: [src/commands/template/generate/lightning/test.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/lightning/test.ts)_
755+
_See code: [src/commands/template/generate/lightning/test.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/lightning/test.ts)_
756756

757757
## `sf template generate project`
758758

@@ -773,7 +773,7 @@ FLAGS
773773
<options: standard|empty|analytics|reactinternalapp|reactexternalapp|agent>
774774
-x, --manifest Generate a manifest (package.xml) for change-set based development.
775775
--api-version=<value> Will set this version as sourceApiVersion in the sfdx-project.json file
776-
--lwc-language=<option> Language of the Lightning Web Components. Default is "javascript".
776+
--lwc-language=<option> Language of the Lightning Web Components. If not specified, "javascript" is used.
777777
<options: javascript|typescript>
778778
779779
GLOBAL FLAGS
@@ -870,15 +870,15 @@ FLAG DESCRIPTIONS
870870
871871
Override the api version used for api requests made by this command
872872
873-
--lwc-language=javascript|typescript Language of the Lightning Web Components. Default is "javascript".
873+
--lwc-language=javascript|typescript Language of the Lightning Web Components. If not specified, "javascript" is used.
874874
875-
Sets the default language for Lightning Web Components in this project. When set to `'typescript'`, generates
876-
TypeScript configuration files (tsconfig.json, package.json with TypeScript dependencies, and TypeScript-aware
877-
ESLint config). TypeScript files are compiled locally for validation, and the TypeScript (`.ts`) files are deployed
878-
to Salesforce for server-side type stripping. If not specified, the project uses JavaScript.
875+
When set to `'typescript'`, generates TypeScript configuration files (tsconfig.json, package.json with TypeScript
876+
dependencies, and TypeScript-aware ESLint config). When you deploy the TypeScript-based Lightning Web Components,
877+
the TypeScript files are first compiled locally for validation and then the `.ts` files are deployed to your org for
878+
server-side type stripping.
879879
```
880880

881-
_See code: [src/commands/template/generate/project/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/project/index.ts)_
881+
_See code: [src/commands/template/generate/project/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/project/index.ts)_
882882

883883
## `sf template generate static-resource`
884884

@@ -941,7 +941,7 @@ FLAG DESCRIPTIONS
941941
etc.
942942
```
943943

944-
_See code: [src/commands/template/generate/static-resource/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/static-resource/index.ts)_
944+
_See code: [src/commands/template/generate/static-resource/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/static-resource/index.ts)_
945945

946946
## `sf template generate ui-bundle`
947947

@@ -1025,7 +1025,7 @@ FLAG DESCRIPTIONS
10251025
Supplied parameter values or default values are filled into a copy of the template.
10261026
```
10271027

1028-
_See code: [src/commands/template/generate/ui-bundle/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/ui-bundle/index.ts)_
1028+
_See code: [src/commands/template/generate/ui-bundle/index.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/ui-bundle/index.ts)_
10291029

10301030
## `sf template generate visualforce component`
10311031

@@ -1082,7 +1082,7 @@ FLAG DESCRIPTIONS
10821082
Supplied parameter values or default values are filled into a copy of the template.
10831083
```
10841084

1085-
_See code: [src/commands/template/generate/visualforce/component.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/visualforce/component.ts)_
1085+
_See code: [src/commands/template/generate/visualforce/component.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/visualforce/component.ts)_
10861086

10871087
## `sf template generate visualforce page`
10881088

@@ -1133,6 +1133,6 @@ FLAG DESCRIPTIONS
11331133
The name can be up to 40 characters and must start with a letter.
11341134
```
11351135

1136-
_See code: [src/commands/template/generate/visualforce/page.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.0/src/commands/template/generate/visualforce/page.ts)_
1136+
_See code: [src/commands/template/generate/visualforce/page.ts](https://github.com/salesforcecli/plugin-templates/blob/56.15.1/src/commands/template/generate/visualforce/page.ts)_
11371137

11381138
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-templates",
33
"description": "Commands to create metadata from a default or custom template",
4-
"version": "56.15.0",
4+
"version": "56.15.1",
55
"author": "Salesforce",
66
"bugs": "https://github.com/salesforcecli/plugin-templates/issues",
77
"enableO11y": true,

0 commit comments

Comments
 (0)