zeus-css 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,13 @@ Thanks to the framework's token generation, you can natively use the fluid CSS v
|
|
|
54
54
|
}
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
### Compiling with the `sass` CLI directly (no bundler)
|
|
58
|
+
Bundlers like Vite and Webpack resolve `@use "zeus-css/..."` automatically. The plain `sass` CLI does not — pass `--load-path=node_modules` or it will fail with `Can't find stylesheet to import`:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
sass --load-path=node_modules your-file.scss your-file.css
|
|
62
|
+
```
|
|
63
|
+
|
|
57
64
|
## ⚠️ Optimizing for Production (Crucial)
|
|
58
65
|
Zeus CSS ships with thousands of utility classes to give you absolute freedom during development. For production builds, you **must** use PurgeCSS to remove unused selectors and keep your CSS payload tiny.
|
|
59
66
|
|