Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
method Result.prototype.warnings
Re-export
import { Result } from "https://deno.land/x/postcss@8.4.16/lib/postcss.d.ts";

Returns warnings from plugins. Filters Warning instances from Result#messages.

result.warnings().forEach(warn => {
  console.warn(warn.toString())
})

Returns

Warnings from plugins.