https://github.com/wroud/tailwindcss-yarn-pnp
https://github.com/wroud/tailwindcss-yarn-pnp
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/wroud/tailwindcss-yarn-pnp
- Owner: Wroud
- Created: 2025-04-22T07:45:22.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-04-22T08:15:26.000Z (about 1 month ago)
- Last Synced: 2025-04-24T19:54:54.199Z (about 1 month ago)
- Language: TypeScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tailwindcss-yarn-pnp
how to run (from the root, you will need corepack):
```sh
yarn
```from `./packages/vite-bundle`
```sh
yarn dev
```then you can see that `p-10` is generated (because it's declared in `./packages/vite-bundle/main.tsx`) but other classed don't
```css
@layer utilities {
.twp\:p-10 {
padding: calc(var(--twp-spacing) * 10);
}
}
```