Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/failureNotifications.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: failureNotifications
on:
workflow_dispatch:
# workflow_run:
# workflows:
# - publish
# - create-github-release
# types:
# - completed
workflow_run:
workflows:
- publish
- create-github-release
types:
- completed
jobs:
failure-notify:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions src/commands/lightning/dev/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import fs from 'node:fs';
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import { expDev, setupDev } from '@lwrjs/api';
import { expDev, LocalDevOptions, setupDev } from '@lwrjs/api';
import { OrgUtils } from '../../../shared/orgUtils.js';
import { PromptUtils } from '../../../shared/promptUtils.js';
import { ExperienceSite } from '../../../shared/experience/expSite.js';
Expand Down Expand Up @@ -80,8 +80,8 @@ export default class LightningDevSite extends SfCommand<void> {

// Start the dev server
const port = parseInt(process.env.PORT ?? '3000', 10);
const startupParams = {
sfCli: true,
const startupParams: LocalDevOptions = {
sfCLI: true,
authToken,
open: true,
port,
Expand Down