cat-framework-core 0.2.0 โ 0.2.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/CHANGELOG.md +44 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
|
|
7
|
+
## [0.2.1] โ 2026-03-14
|
|
8
|
+
|
|
9
|
+
### ๐งน Changed
|
|
10
|
+
- Updated README on npm with proper installation guide, component overview, and usage examples
|
|
11
|
+
- CHANGELOG now included in published package
|
|
12
|
+
|
|
13
|
+
## [0.2.0] โ 2026-03-14
|
|
14
|
+
|
|
15
|
+
### ๐ Added
|
|
16
|
+
- Professional README with installation guide, component overview, and usage examples
|
|
17
|
+
- `publishConfig` in package.json for reliable npm publishing
|
|
18
|
+
- Publish workflow guard against accidental scoped package names
|
|
19
|
+
- npm authentication verification step in CI
|
|
20
|
+
|
|
21
|
+
### ๐งน Changed
|
|
22
|
+
- **Package renamed** from `@cat-framework/core` to `cat-framework-core` (unscoped, free npm)
|
|
23
|
+
- **Dependencies reduced** from 51 to 8 runtime dependencies โ all non-library deps moved to devDependencies
|
|
24
|
+
- Library build no longer includes `public/` assets (favicon, placeholder, robots.txt)
|
|
25
|
+
- Cleaned up Vite lib externals: removed unused `@radix-ui/react-tabs` and `@radix-ui/react-switch`, added `@radix-ui/react-label`
|
|
26
|
+
|
|
27
|
+
### ๐ Fixed
|
|
28
|
+
- npm publish 404 error caused by scoped package name without paid npm organization
|
|
29
|
+
|
|
30
|
+
## [0.1.6] โ 2026-03-14
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- First successful npm publish under unscoped name `cat-framework-core`
|
|
34
|
+
|
|
35
|
+
## [0.1.2] โ 2026-03-13
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
- Initial component library with 14 components:
|
|
39
|
+
Typography, Badge, Hero, ImageTextTeaser, ContentCard, FaqAccordion,
|
|
40
|
+
ContactForm, Navbar, Footer, SearchBar, Breadcrumb, TariffSelect,
|
|
41
|
+
BrandProvider, BrandSwitcher
|
|
42
|
+
- Multi-brand theming via BrandProvider context
|
|
43
|
+
- JSON-LD structured data for FAQ and Breadcrumb components
|
|
44
|
+
- Docs site with live previews and prop tables
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cat-framework-core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "CAT Core Framework โ Modular component system for Bloomreach CMS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
-
"src/index.css"
|
|
19
|
+
"src/index.css",
|
|
20
|
+
"CHANGELOG.md"
|
|
20
21
|
],
|
|
21
22
|
"sideEffects": false,
|
|
22
23
|
"keywords": [
|