Skip to content

Commit

Permalink
fix: add signals as dependency (#4106)
Browse files Browse the repository at this point in the history
* fix: add signals as dependency

* chore: remove signals from lwc export
  • Loading branch information
jmsjtu committed Mar 27, 2024
1 parent 8643706 commit 8ab5109
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/@lwc/engine-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
},
"dependencies": {
"@lwc/features": "6.3.4",
"@lwc/shared": "6.3.4"
"@lwc/shared": "6.3.4",
"@lwc/signals": "6.3.4"
},
"devDependencies": {
"observable-membrane": "2.0.0",
"@lwc/signals": "6.3.4"
"observable-membrane": "2.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/@lwc/engine-core/src/libs/signal-tracker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
import { isFalse, isFunction, isUndefined } from '@lwc/shared';
import { Signal } from '@lwc/signals';
import { logWarnOnce } from '../../shared/logger';
import type { Signal } from '@lwc/signals';

/**
* This map keeps track of objects to signals. There is an assumption that the signal is strongly referenced
Expand Down

0 comments on commit 8ab5109

Please sign in to comment.