@melcanz85/chaincss 1.6.2 → 1.6.3
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 +3 -1
- package/package.json +1 -1
- package/publish.sh +7 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @melcanz85/chaincss
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/js/@melcanz85%2Fchaincss)
|
|
3
|
+
[](https://badge.fury.io/js/@melcanz85%2Fchaincss)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
6
|
A simple JavaScript-to-CSS transpiler that converts JS objects into optimized CSS.
|
|
@@ -34,6 +34,7 @@ json
|
|
|
34
34
|
ChainCSS offers two prefixing modes:
|
|
35
35
|
|
|
36
36
|
### 1. Lightweight Mode (Default, ~50KB)
|
|
37
|
+
|
|
37
38
|
Built-in prefixer that handles the most common CSS properties:
|
|
38
39
|
- Flexbox & Grid
|
|
39
40
|
- Transforms & Animations
|
|
@@ -44,6 +45,7 @@ Built-in prefixer that handles the most common CSS properties:
|
|
|
44
45
|
No additional installation needed!
|
|
45
46
|
|
|
46
47
|
### 2. Full Mode (Uses Autoprefixer)
|
|
48
|
+
|
|
47
49
|
For complete prefixing coverage of all CSS properties:
|
|
48
50
|
|
|
49
51
|
```bash
|
package/package.json
CHANGED