Skip to content
Merged

Stage #387

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/npm-publish-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
workflow_call:
inputs:
name:
required: true
type: string
description: 'Name of the package directory to publish'
packageName:
required: true
type: string
description: 'Name of the package to publish'
Expand Down Expand Up @@ -67,9 +71,9 @@ jobs:
with:
message: "[skip ci] [version-bump] Automated commit for version ${{ steps.version-bump.outputs.bumped-semantic-version }}"

- run: pnpm i --frozen-lockfile --filter=${{ inputs.name }}...
- run: pnpm build --filter=${{ inputs.name }}...
- run: pnpm publish --access public --filter=${{ inputs.name }} --no-git-checks
- run: pnpm i --frozen-lockfile --filter=${{ inputs.packageName }}...
- run: pnpm build --filter=${{ inputs.packageName }}...
- run: pnpm publish --access public --filter=${{ inputs.packageName }} --no-git-checks

- name: Git tags update
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ jobs:
uses: './.github/workflows/npm-publish-reusable.yml'
with:
name: 'react-ui'
packageName: '@enterwell/react-ui'
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
publish_hooks:
uses: './.github/workflows/npm-publish-reusable.yml'
with:
name: 'react-hooks'
packageName: '@enterwell/react-hooks'
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
publish_mui_hooks:
uses: './.github/workflows/npm-publish-reusable.yml'
with:
name: 'react-mui-hooks'
packageName: '@enterwell/react-mui-hooks'
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}


4 changes: 0 additions & 4 deletions packages/react-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

_NOTE: This is an automatically generated file. Do not modify contents of this file manually._

## [0.6.0] - 2025-04-01
### Changed
- Updated packages

## [0.5.0] - 2024-01-08
### Added
- [useControllableState] useControllableState hook
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion packages/react-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enterwell/react-hooks",
"version": "0.6.0",
"version": "0.5.0",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 0 additions & 4 deletions packages/react-mui-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

_NOTE: This is an automatically generated file. Do not modify contents of this file manually._

## [0.9.0] - 2025-04-01
### Changed
- Migrated to MUI 6

## [0.8.0] - 2024-06-18
### Changed
- [useDataGrid] Disabled column hide when last one is left
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion packages/react-mui-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enterwell/react-mui-hooks",
"version": "0.9.0",
"version": "0.8.0",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 0 additions & 4 deletions packages/react-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

_NOTE: This is an automatically generated file. Do not modify contents of this file manually._

## [0.15.0] - 2025-04-01
### Changed
- Updated MUI to v6

## [0.14.1] - 2024-02-05
### Fixed
- [DropdownButton] Properly disabling the button if the disable prop is passed in
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion packages/react-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@enterwell/react-ui",
"description": "Enterwell's React UI component library.",
"version": "0.15.0",
"version": "0.14.1",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down