diff --git a/index.js b/index.js index a540535..bb7b2c0 100644 --- a/index.js +++ b/index.js @@ -6,5 +6,5 @@ module.exports = function(source) { this.cacheable && this.cacheable(); var value = typeof source === "string" ? JSON.parse(source) : source; this.value = [value]; - return "module.exports = " + JSON.stringify(value, undefined, "\t") + ";"; + return "module.exports = " + JSON.stringify(value) + ";"; }