Skip to content

Instantly share code, notes, and snippets.

@tlrobinson
Last active August 6, 2018 20:01
Show Gist options
  • Save tlrobinson/b9e9269978152b4d37dc95bcb364711f to your computer and use it in GitHub Desktop.
Save tlrobinson/b9e9269978152b4d37dc95bcb364711f to your computer and use it in GitHub Desktop.
webpack logging loader
module.exports = function(source) {
return (
`console.log("Loading: " + ${JSON.stringify(this._module.userRequest)});\n` +
source +
`\nconsole.log("Loaded: " + ${JSON.stringify(this._module.userRequest)});`
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment