File tree Expand file tree Collapse file tree
import-multiple-references Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " postcss-modules-extract-imports" ,
3- "version" : " 0.0.1 " ,
3+ "version" : " 0.0.2 " ,
44 "description" : " A CSS Modules transform to extract local aliases for inline imports" ,
55 "main" : " lib/index.js" ,
66 "scripts" : {
4343 "chokidar-cli" : " ^0.2.1" ,
4444 "codecov.io" : " ^0.1.2" ,
4545 "coveralls" : " ^2.11.2" ,
46- "eslint" : " ^0.21.2 " ,
46+ "eslint" : " ^0.22.1 " ,
4747 "istanbul" : " ^0.3.14" ,
4848 "mocha" : " ^2.2.5"
4949 }
Original file line number Diff line number Diff line change 66: import ("path/library2.css" ) {
77 importName : __imported_importName_2;
88}
9+ : import ("path/dep3.css" ) {
10+ thirdDep : __imported_thirdDep_4;
11+ }
912: local (.exportName ) {
1013 extends : __imported_importName_0 __imported_secondImport_1;
1114 extends : __imported_importName_2;
1417: local (.exportName2 ) {
1518 extends : __imported_secondImport_1;
1619 extends : __imported_secondImport_1;
20+ extends : __imported_thirdDep_4;
1721}
Original file line number Diff line number Diff line change 66: local (.exportName2 ) {
77 extends : secondImport from 'path/library.css' ;
88 extends : secondImport from 'path/library.css' ;
9+ extends : thirdDep from 'path/dep3.css' ;
910}
Original file line number Diff line number Diff line change 1+ : import ("./b.css" ) {
2+ b : __imported_b_0;
3+ }
4+ : import ("./c.css" ) {
5+ c : __imported_c_1;
6+ }
7+ .a {
8+ extends : __imported_b_0;
9+ extends : __imported_c_1;
10+ color : # aaa ;
11+ }
Original file line number Diff line number Diff line change 1+ .a {
2+ extends : b from "./b.css" ;
3+ extends : c from "./c.css" ;
4+ color : # aaa ;
5+ }
You can’t perform that action at this time.
0 commit comments