gemcss 0.2.0 → 0.3.1
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 +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# gemcss
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/gemcss)
|
|
4
|
-
[](https://github.com/vkalinichev/gemcss/actions/workflows/ci.yml)
|
|
5
5
|
|
|
6
6
|
Type-safe BEM classes from CSS modules. Write a plain `*.module.css` in BEM
|
|
7
7
|
notation and get back an object where every block is a modifier-combinator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gemcss",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Typed BEM classes from CSS modules — every block becomes a modifier-combinator function, with types inferred from the CSS",
|
|
6
6
|
"keywords": [
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"@changesets/cli": "2.31.0",
|
|
77
77
|
"@types/node": "^22.10.2",
|
|
78
78
|
"eslint": "^9.17.0",
|
|
79
|
+
"gemcss": "link:.",
|
|
79
80
|
"prettier": "^3.4.2",
|
|
80
81
|
"publint": "0.3.21",
|
|
81
82
|
"tsup": "^8.3.5",
|
|
@@ -94,6 +95,7 @@
|
|
|
94
95
|
"typecheck": "tsc --noEmit",
|
|
95
96
|
"lint": "eslint .",
|
|
96
97
|
"format": "prettier --write .",
|
|
98
|
+
"format:check": "prettier --check .",
|
|
97
99
|
"check:exports": "publint --strict && attw --pack . --profile esm-only",
|
|
98
100
|
"release": "changeset publish"
|
|
99
101
|
}
|