Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 285 Bytes

File metadata and controls

13 lines (9 loc) · 285 Bytes

@atomico/postcss-imported

This plugin allows to know the local imports, in order to be observed by third-party tools

const report = {};

await postcss([postcssImported(report)]).process(`@import "./deep-1.css";`, {
    from: "./tests/demo.css",
});

console.log(report);