{"version":3,"sources":["../src/index.ts"],"names":["myPostcssPlugin","root","decl","src_default"],"mappings":"AAEA,MAAMA,EAAqC,KAClC,CACL,cAAe,QACf,KAAKC,EAAM,CACTA,EAAK,UAAU,oBAAqBC,GAAQ,CAC1CA,EAAK,OAAO,CACd,CAAC,CACH,CACF,GAGFF,EAAgB,QAAU,GAE1B,IAAOG,EAAQH","sourcesContent":["import type { PluginCreator } from 'postcss';\n\nconst myPostcssPlugin: PluginCreator<{}> = () => {\n  return {\n    postcssPlugin: 'ancss',\n    Once(root) {\n      root.walkDecls('--made-with-panda', decl => {\n        decl.remove();\n      });\n    }\n  };\n};\n\nmyPostcssPlugin.postcss = true;\n\nexport default myPostcssPlugin;\n"]}