File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3
3
This project adheres to
4
4
[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5
5
6
+ ## 2.0.1 - 2021-01-31
7
+ ### Fixed
8
+ - Fixed an issue with glob path when running on Windows.
9
+
6
10
## 2.0.0 - 2021-01-02
7
11
### Breaking
8
12
- Upgrade to PostCSS v8.
Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ module.exports = (opts = {}) => {
29
29
30
30
for ( const param of params ) {
31
31
if ( param . type === 'string' ) {
32
- globList . push ( path . join ( dirName , param . value ) ) ;
32
+ globList . push (
33
+ path . join ( dirName , param . value ) . replace ( / \\ / g, '/' )
34
+ ) ;
33
35
}
34
36
}
35
37
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " postcss-import-ext-glob" ,
3
- "version" : " 2.0.0 " ,
3
+ "version" : " 2.0.1 " ,
4
4
"description" : " A PostCSS plugin to extend postcss-import path resolver to allow glob usage as path" ,
5
5
"license" : " MIT" ,
6
6
"main" : " index.js" ,
You can’t perform that action at this time.
0 commit comments