From 11837ff515c46258d0446e6cad817b831e7e8be7 Mon Sep 17 00:00:00 2001 From: Brian Jacobel Date: Wed, 17 May 2017 13:47:47 -0400 Subject: [PATCH 1/2] Fix spelling in error message "enterily" -> "entirely" --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index a90b3074..eb135a75 100644 --- a/lib/index.js +++ b/lib/index.js @@ -128,7 +128,7 @@ module.exports = function loader (css, map) { } if (!sourceMap && map) { - this.emitWarning(`\n\n ⚠️ PostCSS Loader\n\nPrevious source map found, but options.sourceMap isn't set.\nIn this case the loader will discard the source map enterily for performance reasons.\nSee https://github.com/postcss/postcss-loader#sourcemap for more information.\n\n`) + this.emitWarning(`\n\n ⚠️ PostCSS Loader\n\nPrevious source map found, but options.sourceMap isn't set.\nIn this case the loader will discard the source map entirely for performance reasons.\nSee https://github.com/postcss/postcss-loader#sourcemap for more information.\n\n`) } if (sourceMap && typeof map === 'string') map = JSON.parse(map) From 136f655e7f60ccc4815ab05cd92c1c179d87328a Mon Sep 17 00:00:00 2001 From: Brian Jacobel Date: Wed, 17 May 2017 13:49:40 -0400 Subject: [PATCH 2/2] Fix same spelling issue in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f7523bc..88be499e 100644 --- a/README.md +++ b/README.md @@ -263,7 +263,7 @@ module.exports = ({ file, options, env }) => ({ Enables source map support, `postcss-loader` will use the previous source map given by other loaders and update it accordingly, if no previous loader is applied before `postcss-loader`, the loader will generate a source map for you. -> :warning: If a previous loader like e.g `sass-loader` is applied and it's `sourceMap` option is set, but the `sourceMap` option in `postcss-loader` is omitted, previous source maps will be discarded by `postcss-loader` **enterily**. +> :warning: If a previous loader like e.g `sass-loader` is applied and it's `sourceMap` option is set, but the `sourceMap` option in `postcss-loader` is omitted, previous source maps will be discarded by `postcss-loader` **entirely**. **webpack.config.js** ```js