@salty-css/webpack 0.0.1-alpha.226 → 0.0.1-alpha.227
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 +5 -1
- package/index-CQi9eOGj.cjs +31101 -0
- package/index-DjGfC538.js +211377 -0
- package/index.cjs +1 -1
- package/index.js +1 -1
- package/loader.cjs +1 -1
- package/loader.js +1 -1
- package/package.json +2 -2
- package/index-DHuI5JGu.cjs +0 -42
- package/index-DimebhYU.js +0 -653
package/README.md
CHANGED
@@ -19,7 +19,7 @@ Is there anything saltier than CSS in frontend web development? Salty CSS is bui
|
|
19
19
|
Fastest way to get started with any framework is
|
20
20
|
|
21
21
|
```bash
|
22
|
-
npx salty-css init
|
22
|
+
npx salty-css init
|
23
23
|
```
|
24
24
|
|
25
25
|
Other guides:
|
@@ -40,6 +40,10 @@ Other guides:
|
|
40
40
|
2. Salty CSS components created with styled function can extend non Salty CSS components (`export const CustomLink = styled(NextJSLink, { ... });`) but those components must take in `className` prop for styles to apply.
|
41
41
|
3. Among common types like `string` and `number`, CSS-in-JS properties in Salty CSS do support `functions` and `promises` as values (`styled('span', { base: { color: async () => 'red' } });`) but running asynchronous tasks or importing heavy 3rd party libraries into `*.css.ts` or `*.css.tsx` files can cause longer build times.
|
42
42
|
|
43
|
+
## Get support
|
44
|
+
|
45
|
+
To get help with problems, [Join Salty CSS Discord server](https://discord.gg/R6kr4KxMhP).
|
46
|
+
|
43
47
|
## API
|
44
48
|
|
45
49
|
### Component styling
|