diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89c1b72c8d..9e7e0e9b6c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,9 +18,6 @@ jobs: - name: Setup uses: ./.github/actions/setup - - name: Run build - run: bun run build - - name: Create Release Pull Request or Publish to NPM id: changesets uses: changesets/action@v1 @@ -28,4 +25,5 @@ jobs: publish: bun run release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/packages/cli/package.json b/packages/cli/package.json index a81379c67a..fc8a4b5846 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -40,6 +40,7 @@ "format:check": "prettier . --check", "prepack": "clean-package", "postpack": "clean-package restore", + "prepublishOnly": "bun run build", "start": "bun run dist/index.js", "typecheck": "tsc --noEmit" }, diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 69643c940c..0c8b0ecccd 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.7.6 + +### Patch Changes + +- [`7a8933d`](https://github.com/themesberg/flowbite-react/commit/7a8933da69b56a72f41442d6a1d77ba11f54bca5) - export `createTheme` API + 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. ### [0.7.5](https://github.com/themesberg/flowbite-react/compare/v0.7.4...v0.7.5) (2024-03-20) diff --git a/packages/ui/package.json b/packages/ui/package.json index c7e4f17a78..7548bc92ca 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "flowbite-react", - "version": "0.7.5", + "version": "0.7.6", "description": "Official React components built for Flowbite and Tailwind CSS", "keywords": [ "design-system", @@ -51,6 +51,7 @@ "lint:fix": "eslint . --fix", "prepack": "clean-package", "postpack": "clean-package restore", + "prepublishOnly": "bun run build", "test": "vitest", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit"