@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.
Files changed (3) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
  3. package/publish.sh +7 -0
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @melcanz85/chaincss
2
2
 
3
- [![npm version](https://badge.fury.io/js/@melcanz85%2Fchaincss.svg)](https://badge.fury.io/js/@melcanz85%2Fchaincss)
3
+ [![npm version](https://badge.fury.io/js/@melcanz85%2Fchaincss.svg?v=2)](https://badge.fury.io/js/@melcanz85%2Fchaincss)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melcanz85/chaincss",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "A simple package transpiler for js to css",
5
5
  "main": "chaincss.js",
6
6
  "publishConfig": {
package/publish.sh ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ npm version patch
3
+ git push --tags
4
+ git checkout main
5
+ git merge master
6
+ git push origin main
7
+ git checkout master