We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm currently using webpack imports and exports loader to get this to work. Can this be written with es6 exports ? Maybe as a node_module as well?
The text was updated successfully, but these errors were encountered:
Just a suggestion
In the meantime I'm doing this with webpack and it seems to work well
rules: [ { test: path.resolve(__dirname, 'libs/easycam/p5.easycam.js'), use: "imports-loader?p5=>require('p5')" }, { // https://webpack.js.org/guides/shimming/#global-exports test: path.resolve(__dirname, 'libs/easycam/p5.easycam.js'), use: 'exports-loader?createEasyCam=p5.prototype.createEasyCam,EasyCamLib=Dw' },
then in my animation file
import { createEasyCam, EasyCamLib } from '../libs/easycam/p5.easycam.js';
Sorry, something went wrong.
No branches or pull requests
I'm currently using webpack imports and exports loader to get this to work.
Can this be written with es6 exports ?
Maybe as a node_module as well?
The text was updated successfully, but these errors were encountered: