Skip to content

Commit

Permalink
resolve test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanner Reits committed Jun 25, 2024
1 parent 680d34b commit 48dc71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/app-core/app-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const getBuildFeatures = (cmps: ComponentCompilerMeta[]): BuildFeatures =
member: cmps.some((c) => c.hasMember),
method: cmps.some((c) => c.hasMethod),
mode: cmps.some((c) => c.hasMode),
observeAttribute: cmps.some((c) => c.hasWatchCallback),
observeAttribute: cmps.some((c) => c.hasAttribute || c.hasWatchCallback),
prop: cmps.some((c) => c.hasProp),
propBoolean: cmps.some((c) => c.hasPropBoolean),
propNumber: cmps.some((c) => c.hasPropNumber),
Expand Down

0 comments on commit 48dc71c

Please sign in to comment.