File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const isCssVar = (value: string) => value.includes("var(");
20
20
*/
21
21
export const postcssInlineCssVars = ( ) : Plugin => {
22
22
return {
23
- postcssPlugin : "postcss-plugin: inline-css-vars" ,
23
+ postcssPlugin : "postcss-inline-css-vars" ,
24
24
Once ( root ) {
25
25
// Extract CSS variables from :root.
26
26
let cssVars : Record < string , string > = { } ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import type { Plugin } from "postcss";
11
11
*/
12
12
export const postcssScopedStyles = ( moduleName : string ) : Plugin => {
13
13
return {
14
- postcssPlugin : "postcss-plugin: scoped-styles" ,
14
+ postcssPlugin : "postcss-scoped-styles" ,
15
15
Once ( root ) {
16
16
root . walkRules ( ( rule ) => {
17
17
rule . selectors = rule . selectors . map ( ( selector ) => {
You can’t perform that action at this time.
0 commit comments