-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
Plain JS config: How to load plugins? #53
Comments
So far I've tracked it down to this function: Lines 46 to 48 in aaec89b
When running with a JSON config, the
But when running with plain JS, the plugins section of
(In both cases, |
So here's the problem: Lines 40 to 44 in aaec89b
If there's no One possible (and kinda ugly) fix is to pass Lines 87 to 99 in aaec89b
|
BTW while debugging this I noticed that the
|
Example fix for krakenjs#53
The plain JS config example creates the plugin section as follows:
But
nemo.view
is undefined:Output:
I've tried both
module: require.resolve("nemo-view")
andmodule: require("nemo-view")
but neither gets nemo-view to load.Enabling
DEBUG=nemo-core:log
only showssnap
being loaded:The text was updated successfully, but these errors were encountered: