Skip to content

Commit 4a5f7c5

Browse files
authored
Merge branch 'main' into pjain/siteBugFix
2 parents 5f6cda6 + f6c0206 commit 4a5f7c5

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

.github/workflows/failureNotifications.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: failureNotifications
22
on:
33
workflow_dispatch:
4-
# workflow_run:
5-
# workflows:
6-
# - publish
7-
# - create-github-release
8-
# types:
9-
# - completed
4+
workflow_run:
5+
workflows:
6+
- publish
7+
- create-github-release
8+
types:
9+
- completed
1010
jobs:
1111
failure-notify:
1212
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.3.1](https://github.com/salesforcecli/plugin-lightning-dev/compare/2.3.0...2.3.1) (2024-11-21)
2+
3+
### Bug Fixes
4+
5+
- sfCLI parameter ([#260](https://github.com/salesforcecli/plugin-lightning-dev/issues/260)) ([f6556b1](https://github.com/salesforcecli/plugin-lightning-dev/commit/f6556b13c0c44cf283c31a8a3e99f97dffc60bd6))
6+
17
# [2.3.0](https://github.com/salesforcecli/plugin-lightning-dev/compare/2.2.3...2.3.0) (2024-11-19)
28

39
### Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ EXAMPLES
200200
$ sf lightning dev app --target-org myOrg --device-type ios --device-id "iPhone 15 Pro Max"
201201
```
202202

203-
_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/2.3.0/src/commands/lightning/dev/app.ts)_
203+
_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/2.3.1/src/commands/lightning/dev/app.ts)_
204204

205205
## `sf lightning dev site`
206206

@@ -244,6 +244,6 @@ EXAMPLES
244244
$ sf lightning dev site --name "Partner Central" --target-org myOrg
245245
```
246246

247-
_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/2.3.0/src/commands/lightning/dev/site.ts)_
247+
_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/2.3.1/src/commands/lightning/dev/site.ts)_
248248

249249
<!-- 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-lightning-dev",
33
"description": "Lightning development tools for LEX, Mobile, and Experience Sites",
4-
"version": "2.3.0",
4+
"version": "2.3.1",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

src/commands/lightning/dev/site.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import fs from 'node:fs';
88
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
99
import { Messages } from '@salesforce/core';
10-
import { expDev, setupDev } from '@lwrjs/api';
10+
import { expDev, LocalDevOptions, setupDev } from '@lwrjs/api';
1111
import { OrgUtils } from '../../../shared/orgUtils.js';
1212
import { PromptUtils } from '../../../shared/promptUtils.js';
1313
import { ExperienceSite } from '../../../shared/experience/expSite.js';
@@ -80,7 +80,7 @@ export default class LightningDevSite extends SfCommand<void> {
8080

8181
// Start the dev server
8282
const port = parseInt(process.env.PORT ?? '3000', 10);
83-
const startupParams = {
83+
const startupParams: LocalDevOptions = {
8484
sfCLI: true,
8585
authToken,
8686
open: true,

0 commit comments

Comments
 (0)