sass-loader 7.0.2 → 7.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ <a name="7.0.3"></a>
6
+ ## [7.0.3](https://github.com/webpack-contrib/sass-loader/compare/v7.0.2...v7.0.3) (2018-06-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Bare imports not working sometimes (#579) ([c348281](https://github.com/webpack-contrib/sass-loader/commit/c348281)), closes [#566](https://github.com/webpack-contrib/sass-loader/issues/566)
12
+
13
+
14
+
5
15
  <a name="7.0.2"></a>
6
16
  ## [7.0.2](https://github.com/webpack-contrib/sass-loader/compare/v7.0.1...v7.0.2) (2018-06-02)
7
17
 
@@ -3,7 +3,7 @@
3
3
  const path = require("path");
4
4
  const utils = require("loader-utils");
5
5
 
6
- const matchModuleImport = /^~([^\/]+|@[^\/]+[\/][^\/]+)$/g;
6
+ const matchModuleImport = /^~([^\/]+|@[^\/]+[\/][^\/]+)$/;
7
7
 
8
8
  /**
9
9
  * When libsass tries to resolve an import, it uses a special algorithm.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-loader",
3
- "version": "7.0.2",
3
+ "version": "7.0.3",
4
4
  "description": "Sass loader for webpack",
5
5
  "author": "J. Tangelder",
6
6
  "license": "MIT",