We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0680212 commit 57850a8Copy full SHA for 57850a8
CHANGELOG.md
@@ -1,5 +1,9 @@
1
### HEAD
2
3
+### 2.1.0
4
+
5
+* Add ability to glob inside `node_modules` and `web_modules` - [#16](https://github.com/TrySound/postcss-easy-import/pull/16)
6
7
### 2.0.0
8
9
* Remove `glob` option and infer type of from the import path. Allows a mixture
README.md
@@ -24,6 +24,7 @@ to locate it. These can be mixed and matched with normal module paths:
24
@import "suitcss-utils-display"; /* node_modules */
25
@import "./theme.css"; /* relative path */
26
@import "./components/*.css"; /* glob */
27
+@import "suitcss-utils-size/lib/*.css"; /* glob inside node_modules */
28
```
29
30
## Options
0 commit comments