-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): use ESBuild as alternative build for Salesforce (#911)
- assign jQuery to the window object so that we can bundle jQuery in the same slickgrid bundle, in other words we would only have 1 single static resource (zip) for the entire slickgrid-universal and that's it (since everything is bundled, jQuery and even SortableJS also become part of the bundle and aren't needed as extra resources)
- Loading branch information
1 parent
8b84952
commit b1b19e5
Showing
5 changed files
with
11 additions
and
4 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,4 @@ | ||
import jQuery from 'jquery'; | ||
|
||
// assign jQuery on the global window object | ||
Object.assign(window, { $: jQuery, jQuery }); |
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
Binary file modified
BIN
+3.79 KB
(100%)
packages/vanilla-force-bundle/dist-grid-bundle-zip/slickgrid-vanilla-bundle.zip
Binary file not shown.
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
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