This is pretty readily repeatable by installing open-props with NPM (or PNPM, or YARN, or whatever you want). Then create the following file named app.postcss:
When trying to compile it (I'm consuming it from Svelte Kit, using their post css adapter), it will inform you that Missing "./postcss/buttons" export in "open-props" package. Which is true, the package.json doesn't define any postcss/* exports apart from style and normalize:
Even trying to directly import the file I care about fails:
This is pretty readily repeatable by installing open-props with NPM (or PNPM, or YARN, or whatever you want). Then create the following file named
app.postcss
:When trying to compile it (I'm consuming it from Svelte Kit, using their post css adapter), it will inform you that
Missing "./postcss/buttons" export in "open-props" package
. Which is true, the package.json doesn't define anypostcss/*
exports apart from style and normalize:Even trying to directly import the file I care about fails:
With:
Missing "./src/extra/buttons.css" export in "open-props" package