We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea97a3a commit eb0cb4bCopy full SHA for eb0cb4b
1 file changed
src/index.js
@@ -35,8 +35,8 @@ const processor = postcss.plugin('modules-extract-imports', function(options) {
35
selector: `:import("${path}")`,
36
after: "\n",
37
nodes: Object.keys(pathImports).map(importedSymbol => postcss.decl({
38
- prop: importedSymbol,
39
- value: pathImports[importedSymbol],
+ value: importedSymbol,
+ prop: pathImports[importedSymbol],
40
before: "\n "
41
}))
42
}));
0 commit comments