-
-
Notifications
You must be signed in to change notification settings - Fork 940
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: createSignal not found when bundled (#1964)
* fix: createSignal not found when bundled In some circumstances a global function export (like `createSignal`) can be transformed by rollup into a let binding, which will break the global evaluation of `transPending` since then `createSignal` will be defined after being used. * move to a better place
- Loading branch information
1 parent
e09a3cc
commit 22667bb
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"solid-js": patch | ||
--- | ||
|
||
fix: createSignal not found when bundled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters