File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
src/commands/lightning/dev Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11name : failureNotifications
22on :
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
1010jobs :
1111 failure-notify :
1212 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 77import fs from 'node:fs' ;
88import { SfCommand , Flags } from '@salesforce/sf-plugins-core' ;
99import { Messages } from '@salesforce/core' ;
10- import { expDev , setupDev } from '@lwrjs/api' ;
10+ import { expDev , LocalDevOptions , setupDev } from '@lwrjs/api' ;
1111import { OrgUtils } from '../../../shared/orgUtils.js' ;
1212import { PromptUtils } from '../../../shared/promptUtils.js' ;
1313import { 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,
You can’t perform that action at this time.
0 commit comments