File tree Expand file tree Collapse file tree 3 files changed +357
-349
lines changed Expand file tree Collapse file tree 3 files changed +357
-349
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " A CSS Modules transform to extract local aliases for inline imports" ,
5
5
"main" : " src/index.js" ,
6
6
"engines" : {
7
- "node" : " >= 10.13.0 || >= 12.13.0 || >= 14"
7
+ "node" : " ^10 || ^12 || >= 14"
8
8
},
9
9
"files" : [
10
10
" src"
37
37
"homepage" : " https://github.com/css-modules/postcss-modules-extract-imports" ,
38
38
"devDependencies" : {
39
39
"coveralls" : " ^3.1.0" ,
40
- "eslint" : " ^7.9 .0" ,
40
+ "eslint" : " ^7.10 .0" ,
41
41
"husky" : " ^4.3.0" ,
42
- "jest" : " ^26.4 .2" ,
42
+ "jest" : " ^26.5 .2" ,
43
43
"lint-staged" : " ^10.4.0" ,
44
- "postcss" : " ^8.0.7 " ,
44
+ "postcss" : " ^8.1.1 " ,
45
45
"prettier" : " ^2.1.2"
46
46
},
47
47
"peerDependencies" : {
48
- "postcss" : " ^8.0 .0"
48
+ "postcss" : " ^8.1 .0"
49
49
}
50
50
}
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ module.exports = (options = {}) => {
63
63
64
64
return {
65
65
postcssPlugin : "postcss-modules-extract-imports" ,
66
- RootExit ( root , postcss ) {
66
+ OnceExit ( root , postcss ) {
67
67
const graph = { } ;
68
68
const visited = { } ;
69
69
You can’t perform that action at this time.
0 commit comments