Open
Description
Is this plugin compatible with Parcel v2 beta?
I tried every combination of:
{
"peerDependencies": {
"jquery": "*",
"jquery.js": "*",
"bootstrap": "*"
},
"externals": [
"jquery => jQuery",
"jQuery => jquery",
"jquery => require('jquery')",
"jQuery => require('jquery')",
"jQuery => require('node_modules/jquery/dist/jquery.js')",
"jquery => require('node_modules/jquery/dist/jquery.js')",
"$ => require('node_modules/jquery/dist/jquery.js')"
],
}
Importing like that:
import $ from 'jquery';
But jQuery is bundled into my app.js
whatsoever :-(