We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package
I have a svelte lib setup and am using svelte-package + tailwindcss + postcss to create a component package lib folder for publishing to npm.
svelte-package
tailwindcss
postcss
when i run pnpm package the package folder is automatically created with the contents:
pnpm package
package/ βββ components/ β βββ Button.svelte β βββ Button.svelte.d.ts - βββ styles.postcss βββ index.js βββ index.d.ts βββ package.json
But that styles.postcss isn't processed or minified for production and I'm really not sure what best option is.
styles.postcss
What are my options?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a svelte lib setup and am using
svelte-package
+tailwindcss
+postcss
to create a componentpackage
lib folder for publishing to npm.when i run
pnpm package
thepackage
folder is automatically created with the contents:package/ βββ components/ β βββ Button.svelte β βββ Button.svelte.d.ts - βββ styles.postcss βββ index.js βββ index.d.ts βββ package.json
But that
styles.postcss
isn't processed or minified for production and I'm really not sure what best option is.What are my options?
The text was updated successfully, but these errors were encountered: