mirror of
https://github.com/penpot/penpot.git
synced 2025-05-29 15:56:12 +02:00
♻️ Refactor bundle mechanism
Mainly leave shadow-cljs for build cljs stuff and use esbuild for bundle all js dependencies, completly avoiding all possible incompatibility issues between js libraries and google closure compiler.
This commit is contained in:
parent
366bca5f93
commit
607deb31dc
45 changed files with 2833 additions and 257 deletions
|
@ -1,5 +1,7 @@
|
|||
if (!('dynamicImport' in window)) {
|
||||
window.dynamicImport = function(uri) {
|
||||
if (!('dynamicImport' in globalThis)) {
|
||||
globalThis.dynamicImport = function(uri) {
|
||||
return import(uri);
|
||||
}
|
||||
};
|
||||
|
||||
var global = globalThis;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue