postcss 8.1.3 → 8.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of postcss might be problematic. Click here for more details.
- package/CHANGELOG.md +3 -0
- package/lib/postcss.d.ts +3 -1
- package/lib/processor.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/postcss.d.ts
CHANGED
@@ -409,8 +409,10 @@ export interface Postcss {
|
|
409
409
|
}
|
410
410
|
|
411
411
|
export const stringify: Stringifier
|
412
|
-
export const atRule: Postcss['atRule']
|
413
412
|
export const parse: Parser
|
413
|
+
|
414
|
+
export const comment: Postcss['comment']
|
415
|
+
export const atRule: Postcss['atRule']
|
414
416
|
export const decl: Postcss['decl']
|
415
417
|
export const rule: Postcss['rule']
|
416
418
|
export const root: Postcss['root']
|
package/lib/processor.js
CHANGED