()
| 30 | } |
| 31 | |
| 32 | function css2str() { |
| 33 | return [ |
| 34 | { |
| 35 | test: /\.css$/, |
| 36 | use: [{ |
| 37 | loader: 'css-loader', |
| 38 | options: { |
| 39 | url: false, |
| 40 | exportType: 'string' |
| 41 | } |
| 42 | }] |
| 43 | }, |
| 44 | ]; |
| 45 | } |
| 46 | |
| 47 | function scss(loader = 'style-loader', css = false) { |
| 48 | return [ |
nothing calls this directly
no outgoing calls
no test coverage detected