@gv-tech/design-system 2.0.0 → 2.0.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +7 -0
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.0.0...design-system-v2.0.1) (2026-02-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Add `exports` field to `package.json` for conditional package entry points. ([145cb19](https://github.com/Garcia-Ventures/gvtech-design/commit/145cb19adf80bf871bdd00c3634ed5ad4f495f61))
|
|
9
|
+
|
|
3
10
|
## [2.0.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v1.2.0...design-system-v2.0.0) (2026-02-12)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gv-tech/design-system",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Garcia Ventures react design system",
|
|
5
5
|
"repository": "git@github.com:Garcia-Ventures/gvtech-design.git",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Eric N. Garcia <eng618@garciaericn.com>",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.es.js",
|
|
12
|
+
"require": "./dist/index.cjs.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
8
16
|
"main": "dist/index.cjs.js",
|
|
9
17
|
"module": "dist/index.es.js",
|
|
10
18
|
"types": "dist/index.d.ts",
|