Skip to content

Commit 392182f

Browse files
committed
chore(nf): fix double negation lint error in builder under nf lib
1 parent abab69a commit 392182f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • libs/native-federation/src/builders/build

libs/native-federation/src/builders/build/builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export async function* runBuilder(
135135
const write = true;
136136
const watch = nfOptions.watch;
137137

138-
if (!!options['buildTarget']) {
138+
if (options['buildTarget']) {
139139
serverOptions = await normalizeOptions(
140140
context,
141141
context.target.project,

0 commit comments

Comments
 (0)