File tree 7 files changed +54
-57
lines changed
7 files changed +54
-57
lines changed Original file line number Diff line number Diff line change
1
+ /*!********************************************************************!*\
2
+ !*** css ../../../node_modules/css-loader/dist/cjs.js!./style.css ***!
3
+ \********************************************************************/
4
+ body {
5
+ background : red;
6
+ }
7
+
8
+ /*!********************************************************************!*\
9
+ !*** css ../../../node_modules/css-loader/dist/cjs.js!./other.css ***!
10
+ \********************************************************************/
11
+ body {
12
+ background : blue;
13
+ }
14
+
15
+ /*!********************************************************************!*\
16
+ !*** css ../../../node_modules/css-loader/dist/cjs.js!./extra.css ***!
17
+ \********************************************************************/
18
+ body {
19
+ background : yellow;
20
+ }
21
+
Original file line number Diff line number Diff line change
1
+ body {
2
+ background : yellow;
3
+ }
Original file line number Diff line number Diff line change
1
+ import "./style.css" ;
2
+ import "./other.css" ;
3
+ import "./extra.css" ;
Original file line number Diff line number Diff line change
1
+ body {
2
+ background : blue;
3
+ }
Original file line number Diff line number Diff line change
1
+ body {
2
+ background : red;
3
+ }
Original file line number Diff line number Diff line change
1
+ import Self from "../../../src" ;
2
+
3
+ module . exports = {
4
+ entry : "./index.js" ,
5
+ output : {
6
+ pathinfo : true ,
7
+ } ,
8
+ module : {
9
+ rules : [
10
+ {
11
+ test : / \. c s s $ / ,
12
+ use : [ Self . loader , "css-loader" ] ,
13
+ } ,
14
+ ] ,
15
+ } ,
16
+ plugins : [
17
+ new Self ( {
18
+ filename : "[name].css" ,
19
+ } ) ,
20
+ ] ,
21
+ } ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments