@gv-tech/design-system 0.8.0 → 0.9.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/.github/workflows/release-please.yml +2 -2
- package/CHANGELOG.md +7 -0
- package/README.md +12 -18
- package/package.json +16 -15
|
@@ -37,8 +37,8 @@ jobs:
|
|
|
37
37
|
uses: actions/setup-node@v6
|
|
38
38
|
with:
|
|
39
39
|
node-version: 24
|
|
40
|
-
registry-url:
|
|
41
|
-
cache:
|
|
40
|
+
registry-url: "https://registry.npmjs.org"
|
|
41
|
+
cache: "yarn"
|
|
42
42
|
|
|
43
43
|
- name: Install dependencies
|
|
44
44
|
if: ${{ steps.release.outputs.release_created }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.8.0...v0.9.0) (2026-02-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Automate npm publishing for the scoped design system package with provenance. ([e3bef59](https://github.com/Garcia-Ventures/gvtech-design/commit/e3bef59f66d02c561a7eef8caab6a80019cb4127))
|
|
9
|
+
|
|
3
10
|
## [0.8.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.7.0...v0.8.0) (2026-02-01)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
#
|
|
1
|
+
# GV Tech Design System
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img alt="
|
|
4
|
+
<img alt="GV Tech Design System" src="https://raw.githubusercontent.com/Garcia-Ventures/gvtech-design/main/assets/logo.png" width="180" />
|
|
5
5
|
|
|
6
6
|
<br />
|
|
7
7
|
<a href="https://app.netlify.com/sites/ge-design/deploys"><img alt="Netlify Status" src="https://api.netlify.com/api/v1/badges/c104d072-a3bb-4f8a-bd93-a7d5652ff75f/deploy-status" /></a>
|
|
8
|
-
<a href="https://github.com/Garcia-
|
|
9
|
-
<a href="https://
|
|
10
|
-
<a href="https://www.npmjs.com/package/ge-design-system"><img alt="npm" src="https://img.shields.io/npm/dt/ge-design-system" /></a>
|
|
8
|
+
<a href="https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml/badge.svg" /></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/@gv-tech/design-system"><img alt="npm" src="https://img.shields.io/npm/dt/@gv-tech/design-system" /></a>
|
|
11
10
|
</p>
|
|
12
11
|
|
|
12
|
+
[](https://app.fossa.com/projects/custom%2B20755%2Fgithub.com%2FGarcia-Ventures%2Fgvtech-design?ref=badge_shield&issueType=license)
|
|
13
|
+
|
|
13
14
|
A React component design system derived from the [Storybook Design System](https://github.com/storybookjs/design-system). This repository provides a lightweight, opinionated set of UI components and tooling used by Garcia Ventures projects.
|
|
14
15
|
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
**Table of Contents**
|
|
18
19
|
|
|
19
|
-
- [
|
|
20
|
+
- [GV Tech Design System](#gv-tech-design-system)
|
|
20
21
|
- [Demo](#demo)
|
|
21
22
|
- [Install](#install)
|
|
22
23
|
- [Usage](#usage)
|
|
@@ -24,7 +25,6 @@ A React component design system derived from the [Storybook Design System](https
|
|
|
24
25
|
- [Testing](#testing)
|
|
25
26
|
- [Releases \& Publishing](#releases--publishing)
|
|
26
27
|
- [Contributing](#contributing)
|
|
27
|
-
- [Migration to @gvtech scope](#migration-to-gvtech-scope)
|
|
28
28
|
- [Roadmap](#roadmap)
|
|
29
29
|
- [License](#license)
|
|
30
30
|
|
|
@@ -36,24 +36,22 @@ Storybook static docs are available in this repository (`stories` + `src`): run
|
|
|
36
36
|
|
|
37
37
|
## Install
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
The public package is published as `@gv-tech/design-system`:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
# npm
|
|
43
|
-
npm install
|
|
43
|
+
npm install @gv-tech/design-system
|
|
44
44
|
|
|
45
45
|
# yarn
|
|
46
|
-
yarn add
|
|
46
|
+
yarn add @gv-tech/design-system
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
> Note: We are planning a scoped rename to `@gvtech/<name>` (see [MIGRATE_TO_GVTECH_SCOPE.md](docs/MIGRATE_TO_GVTECH_SCOPE.md)).
|
|
50
|
-
|
|
51
49
|
## Usage
|
|
52
50
|
|
|
53
51
|
Example import:
|
|
54
52
|
|
|
55
53
|
```js
|
|
56
|
-
import { Button } from '
|
|
54
|
+
import { Button } from '@gv-tech/design-system';
|
|
57
55
|
|
|
58
56
|
function App() {
|
|
59
57
|
return <Button>Click me</Button>;
|
|
@@ -90,7 +88,7 @@ Unit tests use Vitest and React Testing Library.
|
|
|
90
88
|
|
|
91
89
|
We use [`googleapis/release-please-action`](https://github.com/googleapis/release-please-action) to create release PRs and tags. For details on how to set it up and test releases, see [.github/RELEASING.md](.github/RELEASING.md).
|
|
92
90
|
|
|
93
|
-
Publishing
|
|
91
|
+
Publishing uses OIDC via npm Trusted Publishers for `@gv-tech` publishing.
|
|
94
92
|
|
|
95
93
|
## Contributing
|
|
96
94
|
|
|
@@ -99,10 +97,6 @@ Please read the full guidelines in [CONTRIBUTING.md](.github/CONTRIBUTING.md) be
|
|
|
99
97
|
- Follow **Conventional Commits** to ensure release tooling produces accurate changelogs.
|
|
100
98
|
- Run `yarn lint` and `yarn test` before opening PRs.
|
|
101
99
|
|
|
102
|
-
## Migration to @gvtech scope
|
|
103
|
-
|
|
104
|
-
See the migration plan and checklist: [docs/MIGRATE_TO_GVTECH_SCOPE.md](docs/MIGRATE_TO_GVTECH_SCOPE.md).
|
|
105
|
-
|
|
106
100
|
## Roadmap
|
|
107
101
|
|
|
108
102
|
See issues and milestones for planned work.
|
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gv-tech/design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Garcia Ventures react design system",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Eric N. Garcia <eng618@garciaericn.com>",
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
8
8
|
"module": "dist/index.es.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
|
-
"repository": "git@github.com:Garcia-
|
|
10
|
+
"repository": "git@github.com:Garcia-Ventures/gvtech-design.git",
|
|
11
11
|
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
12
|
+
"access": "public",
|
|
13
|
+
"provenance": true
|
|
13
14
|
},
|
|
14
15
|
"engines": {
|
|
15
16
|
"node": ">=20"
|
|
@@ -46,20 +47,20 @@
|
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
49
|
"@babel/cli": "^7.28.6",
|
|
49
|
-
"@babel/core": "^7.
|
|
50
|
-
"@babel/preset-env": "^7.
|
|
50
|
+
"@babel/core": "^7.29.0",
|
|
51
|
+
"@babel/preset-env": "^7.29.0",
|
|
51
52
|
"@babel/preset-react": "^7.28.5",
|
|
52
53
|
"@babel/preset-typescript": "^7.28.5",
|
|
53
54
|
"@eng618/prettier-config": "^2.5.2",
|
|
54
55
|
"@eslint/js": "^9.39.2",
|
|
55
56
|
"@mdx-js/react": "^3.1.1",
|
|
56
|
-
"@storybook/addon-a11y": "10.2.
|
|
57
|
-
"@storybook/addon-docs": "10.2.
|
|
58
|
-
"@storybook/addon-links": "10.2.
|
|
59
|
-
"@storybook/builder-vite": "10.2.
|
|
60
|
-
"@storybook/cli": "10.2.
|
|
57
|
+
"@storybook/addon-a11y": "10.2.3",
|
|
58
|
+
"@storybook/addon-docs": "10.2.3",
|
|
59
|
+
"@storybook/addon-links": "10.2.3",
|
|
60
|
+
"@storybook/builder-vite": "10.2.3",
|
|
61
|
+
"@storybook/cli": "10.2.3",
|
|
61
62
|
"@storybook/jest": "^0.2.3",
|
|
62
|
-
"@storybook/react-vite": "10.2.
|
|
63
|
+
"@storybook/react-vite": "10.2.3",
|
|
63
64
|
"@storybook/test-runner": "^0.24.2",
|
|
64
65
|
"@storybook/testing-library": "^0.2.2",
|
|
65
66
|
"@testing-library/dom": "^10.4.1",
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
72
73
|
"@typescript-eslint/parser": "^8.54.0",
|
|
73
74
|
"@vitejs/plugin-react": "5.1.2",
|
|
74
|
-
"axe-core": "^4.
|
|
75
|
+
"axe-core": "^4.11.1",
|
|
75
76
|
"babel-loader": "^10.0.0",
|
|
76
77
|
"concurrently": "^9.2.1",
|
|
77
78
|
"eslint": "^9.39.2",
|
|
@@ -80,8 +81,8 @@
|
|
|
80
81
|
"eslint-plugin-prettier": "^5.5.5",
|
|
81
82
|
"eslint-plugin-react": "^7.37.5",
|
|
82
83
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
83
|
-
"eslint-plugin-storybook": "10.2.
|
|
84
|
-
"globals": "^17.
|
|
84
|
+
"eslint-plugin-storybook": "10.2.3",
|
|
85
|
+
"globals": "^17.3.0",
|
|
85
86
|
"husky": "^9.1.7",
|
|
86
87
|
"jsdom": "^27.4.0",
|
|
87
88
|
"lint-staged": "^16.2.7",
|
|
@@ -92,7 +93,7 @@
|
|
|
92
93
|
"react-docgen-typescript": "^2.4.0",
|
|
93
94
|
"react-dom": "^19.2.4",
|
|
94
95
|
"react-is": "^19.2.4",
|
|
95
|
-
"storybook": "10.2.
|
|
96
|
+
"storybook": "10.2.3",
|
|
96
97
|
"styled-components": "^6.3.8",
|
|
97
98
|
"typescript": "^5.9.3",
|
|
98
99
|
"vite": "7.3.1",
|