From 6b4f8335db6ea7689771456754a7cf07de5008cf Mon Sep 17 00:00:00 2001 From: Mark Faga Date: Thu, 30 Oct 2025 22:11:33 -0400 Subject: [PATCH] fix: include the dist/reforge.bundle.js in our published NPM package --- .github/workflows/release.yaml | 1 + CHANGELOG.md | 4 ++++ package.json | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 079de7d..19f4c73 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -75,6 +75,7 @@ jobs: ${{ runner.os }}-yarn- - run: yarn install --immutable - run: yarn build + - run: yarn bundle - name: Publish to npm run: | if [ "${{ needs.check-version.outputs.is-prerelease }}" == "true" ]; then diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c905a8..b63a216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.2 - 2025-10-30 + +- fix: include the dist/reforge.bundle.js in our published NPM package + ## 0.0.1 - 2025-10-01 - Official patch release diff --git a/package.json b/package.json index 95b4a58..bf68d11 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "packageManager": "yarn@4.9.2", "name": "@reforge-com/javascript", - "version": "0.0.1", + "version": "0.0.2", "description": "Feature Flags & Dynamic Configuration as a Service", "main": "dist/index.cjs", "module": "dist/index.mjs",