(data, plugin)
| 9 | } |
| 10 | |
| 11 | async processCss(data, plugin) { |
| 12 | const processor = postcss([plugin]); |
| 13 | return processor.process(data, { from: undefined, parser: postcssScss }); |
| 14 | } |
| 15 | |
| 16 | findImportedFile(file, originalFilePath) { |
| 17 | const originalDirname = path.dirname(originalFilePath); |
no outgoing calls
no test coverage detected