Skip to content

Instantly share code, notes, and snippets.

@gabsprates
Created January 12, 2019 18:43
Show Gist options
  • Save gabsprates/42a1e53ee7ea639c98cb77bce013a526 to your computer and use it in GitHub Desktop.
Save gabsprates/42a1e53ee7ea639c98cb77bce013a526 to your computer and use it in GitHub Desktop.
Loader that minify GraphQL queries and mutations. To be used with graphql-tag/loader
module.exports = function(source) {
var minified = source
.replace(/(\s)?\{(\s)?/gm, "{")
.replace(/\s\s/gm, "")
.replace(/(\s)?\}(\s)?/gm, "}");
return minified;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment