emily-css 1.2.8 → 1.2.10
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/CHANGELOG.md +20 -0
- package/package.json +3 -2
- package/src/index.js +1887 -1881
- package/src/init.js +1001 -942
- package/src/test/e2e.test.js +332 -0
- package/src/validate.js +227 -0
- package/src/validateConfig.js +36 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable changes to `emily-css` are documented here.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## v1.2.10 — May 2026
|
|
8
|
+
|
|
9
|
+
**v1.2.10 — Config validation & CI/CD**
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- feat: add config validation, E2E chaos testing, and GitHub Actions CI
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- add randomized E2E config fuzzing suite
|
|
16
|
+
- add GitHub Actions test workflow and PR template
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
## v1.2.9 — May 2026
|
|
20
|
+
|
|
21
|
+
**Fix baseFontSize handling in emily-css init and generated CSS**
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- fix(init): persist baseFontSize and emit html font-size for non-default values
|
|
25
|
+
|
|
26
|
+
---
|
|
7
27
|
## v1.2.8 — May 2026
|
|
8
28
|
|
|
9
29
|
**feat(purge): add purge safelist support and keep semantic dark/light utilities**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emily-css",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "A config-driven utility CSS framework. Define your brand once, generate the CSS.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"dev": "nodemon src/index.js",
|
|
20
20
|
"dev:full": "nodemon src/index.js -- --keep-full",
|
|
21
21
|
"init": "node src/init.js",
|
|
22
|
-
"test": "node tests/test.js",
|
|
22
|
+
"test": "node tests/test.js && node src/test/e2e.test.js",
|
|
23
|
+
"test:e2e": "node src/test/e2e.test.js",
|
|
23
24
|
"emily:showcase": "node src/showcase.js",
|
|
24
25
|
"commit": "node scripts/commit.js",
|
|
25
26
|
"release": "node scripts/release.js",
|