From 45f36336a6af9d6e924060d90f28ea15c8ced3ff Mon Sep 17 00:00:00 2001 From: Joshua Wiens Date: Sat, 22 Jul 2017 14:57:30 -0500 Subject: [PATCH] refactor: Strip deprecation warning --- index.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/index.js b/index.js index 44fb2ba..ea4f387 100644 --- a/index.js +++ b/index.js @@ -7,13 +7,5 @@ module.exports = function (source) { .replace(/\u2028/g, '\\u2028') .replace(/\u2029/g, '\\u2029'); - if (this.version && this.version >= 2) { - this.emitWarning(`⚠️ JSON Loader\n -It seems you're using webpack >= v2.0.0, which includes native support for JSON. -Please remove this loader from webpack.config.js as it isn't needed anymore and -is deprecated. See the v1.0.0 -> v2.0.0 migration guide for more information -(https://webpack.js.org/guides/migrating/#json-loader-is-not-required-anymore)\n`) - } - return `module.exports = ${value}`; }