We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4944d75 commit 467c217Copy full SHA for 467c217
esbuild.js
@@ -27,4 +27,4 @@
27
const text = await esbuild.analyzeMetafile(result.metafile)
28
console.log(text);
29
}
30
-})().catch(() => process.exit(1));
+})().catch((e) => console.error(e) || process.exit(1));
js/app.js
@@ -1,12 +1,11 @@
1
import Plausible from 'plausible-tracker'
2
-import jQuery from "jquery";
+import './jquery';
3
import notifier from './notifier';
4
import './search';
5
import './view';
6
import './submitPackage';
7
import '../css/app.scss';
8
-
9
-window.jQuery = window.$ = jQuery;
+import 'bootstrap';
10
11
(function ($) {
12
"use strict";
js/jquery.js
@@ -0,0 +1,2 @@
+import jQuery from 'jquery';
+window.jQuery = window.$ = jQuery;
0 commit comments