Skip to content

Commit f6556b1

Browse files
authored
fix: sfCLI parameter (#260)
1 parent 0449090 commit f6556b1

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
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

src/commands/lightning/dev/site.ts

Lines changed: 3 additions & 3 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,8 +80,8 @@ 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 = {
84-
sfCli: true,
83+
const startupParams: LocalDevOptions = {
84+
sfCLI: true,
8585
authToken,
8686
open: true,
8787
port,

0 commit comments

Comments
 (0)