@octaviaflow/themes 1.0.1 → 2.0.0

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 ADDED
@@ -0,0 +1,70 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@octaviaflow/themes` will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [2.0.0] - 2026-02-07
9
+
10
+ ### Changed
11
+
12
+ - Major version bump to 2.0.0 for unified OctaviaFlow Design System release
13
+ - Updated all internal dependency references to ^2.0.0
14
+ - Replaced workspace protocol references with explicit version ranges
15
+
16
+ ## [1.1.3] - 2026-02-07
17
+
18
+ ### Changed
19
+
20
+ - Synchronized version to 1.1.3 across all OctaviaFlow Design System packages
21
+ - Aligned package versioning for unified release
22
+
23
+ ## [1.1.0] - 2026-02-05
24
+
25
+ ### Added
26
+
27
+ - Modern CLI output with colored text and progress indicators using `chalk` and `ora`
28
+ - Real-time progress tracking during SCSS file generation
29
+ - File-by-file generation status with visual feedback
30
+ - Enhanced error messages with colored output and stack traces
31
+
32
+ ### Changed
33
+
34
+ - Replaced `fs-extra` with native Node.js `fs/promises` for better performance
35
+ - Improved build script with modern async/await patterns
36
+ - Enhanced developer experience with emoji indicators and color-coded messages
37
+
38
+ ### Removed
39
+
40
+ - Dependency on `fs-extra` (replaced with native fs)
41
+ - Dependency on `@octaviaflow/cli-reporter` (replaced with chalk/ora)
42
+
43
+ ### Dependencies
44
+
45
+ - Added `chalk@4.1.2` for colored terminal output
46
+ - Added `ora@5.4.1` for elegant spinners
47
+ - Removed `fs-extra@^11.0.0`
48
+ - Removed `@octaviaflow/cli-reporter@^1.0.0`
49
+
50
+ ### Performance
51
+
52
+ - Faster build times with native fs operations
53
+ - Reduced dependency tree size
54
+
55
+ ## [1.0.1] - 2025-11-11
56
+
57
+ ### Fixed
58
+
59
+ - Initial release fixes and improvements
60
+
61
+ ## [1.0.0] - 2025-11-11
62
+
63
+ ### Added
64
+
65
+ - Initial release of @octaviaflow/themes
66
+ - Theme system for OctaviaFlow Design System
67
+ - Support for multiple color themes (white, g10, g90, g100)
68
+ - Component tokens for buttons, tags, notifications, status, and content switcher
69
+ - SCSS generation from JavaScript tokens
70
+ - ES modules, CommonJS, and UMD bundle support