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
in case
import debug from 'debug'; const log = debug('SeparatedLayers:');
plugin deleted only const log = debug('SeparatedLayers:'); string, but all calls of log still in production code (and crush with log is not defined)
const log = debug('SeparatedLayers:');
log is not defined
The text was updated successfully, but these errors were encountered:
For future readers, a possible workaround is to add debug() on the lines you want to remove:
debug()
import debugModule from 'debug'; // debug() const debug = debugModule("mydebug"); // debug() debug("hello!");
Sorry, something went wrong.
No branches or pull requests
in case
plugin deleted only
const log = debug('SeparatedLayers:');
string, but all calls of log still in production code (and crush withlog is not defined
)The text was updated successfully, but these errors were encountered: