From 03071f8f890e58db712248b030147127cbf9be48 Mon Sep 17 00:00:00 2001 From: fmruiz Date: Mon, 6 May 2024 22:48:03 -0300 Subject: [PATCH 1/8] chore(release): 1.0.2 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae2a8e6..30cf87c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.0.2](https://github.com/fmruiz/voguex-a11y/compare/v1.0.1...v1.0.2) (2024-05-07) + + +### Bug Fixes + +* **hooks:** fix useArrowsNavigation hook ([730b5e5](https://github.com/fmruiz/voguex-a11y/commit/730b5e5481ff66c653fe519089e0182faf3c4ebe)) + ### [1.0.1](https://github.com/fmruiz/voguex-a11y/compare/v1.0.0...v1.0.1) (2024-05-07) diff --git a/package-lock.json b/package-lock.json index 8cc3ba9..cd1cf1d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "voguex-a11y", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "voguex-a11y", - "version": "1.0.1", + "version": "1.0.2", "license": "MIT", "devDependencies": { "@chromatic-com/storybook": "^1.3.3", diff --git a/package.json b/package.json index c76b3d4..079e954 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "voguex-a11y", "private": false, - "version": "1.0.1", + "version": "1.0.2", "type": "module", "description": "Voguex-A11Y is a library that provide hooks to make your components more accessible", "author": { From a79916e113437f7c470098d94c92119efaee9bf1 Mon Sep 17 00:00:00 2001 From: fmruiz Date: Mon, 6 May 2024 22:50:33 -0300 Subject: [PATCH 2/8] chore(release): 1.0.3 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cf87c..df42401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.0.3](https://github.com/fmruiz/voguex-a11y/compare/v1.0.2...v1.0.3) (2024-05-07) + ### [1.0.2](https://github.com/fmruiz/voguex-a11y/compare/v1.0.1...v1.0.2) (2024-05-07) diff --git a/package-lock.json b/package-lock.json index cd1cf1d..4f5ef90 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "voguex-a11y", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "voguex-a11y", - "version": "1.0.2", + "version": "1.0.3", "license": "MIT", "devDependencies": { "@chromatic-com/storybook": "^1.3.3", diff --git a/package.json b/package.json index 079e954..17796da 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "voguex-a11y", "private": false, - "version": "1.0.2", + "version": "1.0.3", "type": "module", "description": "Voguex-A11Y is a library that provide hooks to make your components more accessible", "author": { From a5824e7541017d53dd14e2280943084255b32a75 Mon Sep 17 00:00:00 2001 From: fmruiz Date: Thu, 9 May 2024 18:53:00 -0300 Subject: [PATCH 3/8] feat(root): add deploy gh pages --- .github/workflows/deploy-github-pages.yaml | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/deploy-github-pages.yaml diff --git a/.github/workflows/deploy-github-pages.yaml b/.github/workflows/deploy-github-pages.yaml new file mode 100644 index 0000000..4dcfd2c --- /dev/null +++ b/.github/workflows/deploy-github-pages.yaml @@ -0,0 +1,34 @@ +# Workflow name +name: Build and Publish Storybook to GitHub Pages + +on: + # Event for the workflow to run on + push: + branches: + - 'master' + +permissions: + contents: read + pages: write + id-token: write + +# List of jobs +jobs: + deploy: + runs-on: ubuntu-latest + # Job steps + steps: + # Manual Checkout + - uses: actions/checkout@v3 + + # Set up Node + - uses: actions/setup-node@v3 + with: + node-version: '19.x' + - name: Deploy and Install + uses: bitovi/github-actions-storybook-to-github-pages@v1.0.1 + with: + install_command: npm install # default: npm ci + build_command: npm run build-storybook # default: npm run build-storybook + path: storybook-static # default: dist/storybook + checkout: false # default: true \ No newline at end of file From aaea76517b6bd1ab316fc80fd26df636bb400c75 Mon Sep 17 00:00:00 2001 From: fmruiz Date: Thu, 9 May 2024 19:03:34 -0300 Subject: [PATCH 4/8] feat(root): modify gh workflow --- .github/workflows/deploy-github-pages.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-github-pages.yaml b/.github/workflows/deploy-github-pages.yaml index 4dcfd2c..9fc83c4 100644 --- a/.github/workflows/deploy-github-pages.yaml +++ b/.github/workflows/deploy-github-pages.yaml @@ -24,11 +24,13 @@ jobs: # Set up Node - uses: actions/setup-node@v3 with: - node-version: '19.x' - - name: Deploy and Install - uses: bitovi/github-actions-storybook-to-github-pages@v1.0.1 + node-version: '20.x' + - name: Build + run: | + npm i + npm run build-storybook + - name: Deploy + uses: JamesIves/github-pages-deploy-action@v4 with: - install_command: npm install # default: npm ci - build_command: npm run build-storybook # default: npm run build-storybook - path: storybook-static # default: dist/storybook - checkout: false # default: true \ No newline at end of file + folder: storybook-static + token: ${{ secrets.GH_TOKEN }} \ No newline at end of file From 460c9464e883cf9495da3954f7e763e6c52ec8ba Mon Sep 17 00:00:00 2001 From: fmruiz Date: Thu, 9 May 2024 19:17:23 -0300 Subject: [PATCH 5/8] fix(root): test v3 --- .github/workflows/deploy-github-pages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-github-pages.yaml b/.github/workflows/deploy-github-pages.yaml index 9fc83c4..4aa8411 100644 --- a/.github/workflows/deploy-github-pages.yaml +++ b/.github/workflows/deploy-github-pages.yaml @@ -30,7 +30,7 @@ jobs: npm i npm run build-storybook - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4 + uses: JamesIves/github-pages-deploy-action@v3 with: folder: storybook-static token: ${{ secrets.GH_TOKEN }} \ No newline at end of file From 605ac309746e9dcd75456cbb0f4d44820fec75ef Mon Sep 17 00:00:00 2001 From: fmruiz Date: Thu, 9 May 2024 19:18:50 -0300 Subject: [PATCH 6/8] fix(root): test v4 --- .github/workflows/deploy-github-pages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-github-pages.yaml b/.github/workflows/deploy-github-pages.yaml index 4aa8411..9fc83c4 100644 --- a/.github/workflows/deploy-github-pages.yaml +++ b/.github/workflows/deploy-github-pages.yaml @@ -30,7 +30,7 @@ jobs: npm i npm run build-storybook - name: Deploy - uses: JamesIves/github-pages-deploy-action@v3 + uses: JamesIves/github-pages-deploy-action@v4 with: folder: storybook-static token: ${{ secrets.GH_TOKEN }} \ No newline at end of file From 671d1f7e837576a98ccd952ae2275f6249becdd8 Mon Sep 17 00:00:00 2001 From: fmruiz Date: Thu, 9 May 2024 19:19:44 -0300 Subject: [PATCH 7/8] fix(root): test write value --- .github/workflows/deploy-github-pages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-github-pages.yaml b/.github/workflows/deploy-github-pages.yaml index 9fc83c4..9292486 100644 --- a/.github/workflows/deploy-github-pages.yaml +++ b/.github/workflows/deploy-github-pages.yaml @@ -8,7 +8,7 @@ on: - 'master' permissions: - contents: read + contents: write pages: write id-token: write From 8a56c253858023546622585b521f3a76ae3bf1fb Mon Sep 17 00:00:00 2001 From: fmruiz Date: Thu, 9 May 2024 19:23:30 -0300 Subject: [PATCH 8/8] feat(docs): add homepage --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 17796da..a27db6a 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,7 @@ "files": [ "dist" ], + "homepage": "https://github.com/fmruiz/voguex-a11y", "scripts": { "dev": "vite", "build": "tsc && vite build",