Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5a4d380
chore: renaming ...
pavkam Sep 1, 2025
bfc0d9a
chore: renaming
pavkam Sep 1, 2025
159f2e8
chore: renaming ...
pavkam Sep 1, 2025
46ff4c4
chore: more renaming
pavkam Sep 1, 2025
365edbf
chore: more renaming
pavkam Sep 1, 2025
6b5dc62
chore: more renaming
pavkam Sep 1, 2025
3034b78
chore: more renaming
pavkam Sep 1, 2025
0741166
chore: fixing
pavkam Sep 1, 2025
d579868
chore: fixing
pavkam Sep 1, 2025
e4eceac
chore: fixing
pavkam Sep 1, 2025
910569c
chore: finally all code was renamed/migrated
pavkam Sep 1, 2025
7e8bb4e
chore: update references and configurations for Reflag
pavkam Sep 2, 2025
13f2772
chore: update NPM token reference in publish workflow
pavkam Sep 2, 2025
06f92c3
chore: update package versions for flag-evaluation and node-sdk
pavkam Sep 2, 2025
d70378c
chore: update devDependencies to specific versions and add gitHead to…
pavkam Sep 2, 2025
37966f5
chore: remove gitHead from package.json files across multiple packages
pavkam Sep 2, 2025
5631e9c
chore: naming
pavkam Sep 2, 2025
f0284ab
chore: fixes as found in test
pavkam Sep 2, 2025
cd532dd
chore: resize Logo component SVG dimensions and update path for impro…
pavkam Sep 2, 2025
5b872d3
Update packages/browser-sdk/test/e2e/feedback-widget.browser.spec.ts
pavkam Sep 2, 2025
445eaca
chore: corrections based on feedback
pavkam Sep 2, 2025
d82ab84
Merge remote-tracking branch 'origin/reflag-lite' into reflag-lite
pavkam Sep 2, 2025
9d6d6dc
chore: bump vue
pavkam Sep 2, 2025
dc9fce8
chore: use old URL for live messaging for now
pavkam Sep 2, 2025
0514cc7
fix: correct regex for URL matching in feedback widget tests
pavkam Sep 2, 2025
f4bfeac
docs: update README for Content Security Policy directives formatting
pavkam Sep 2, 2025
2530568
chore: release version 1.0.0 for all SDK packages
pavkam Sep 2, 2025
bcd6258
chore: update SDK package versions to 1.0.0 in yarn.lock
pavkam Sep 2, 2025
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
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
registry-url: "https://registry.npmjs.org"
scope: "@bucketco"
scope: "@reflag"
- name: Install dependencies
run: yarn install --immutable
- name: Build packages
run: yarn build
- name: npm login
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.REFLAG_NPM_TOKEN }}
- name: Publish
run: yarn lerna publish from-package --no-private --yes
- name: Build docs
Expand All @@ -38,12 +38,12 @@ jobs:
path: bucket-docs
- name: Copy generated docs to docs repo
run: |
rm -rf bucket-docs/sdk
cp -R dist/docs bucket-docs/sdk
rm -rf reflag-docs/sdk
cp -R dist/docs reflag-docs/sdk
- name: Commit and push changes
run: |
cd bucket-docs
cd reflag-docs
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@bucket.co"
git config user.email "github-actions[bot]@reflag.com"
git add sdk
git commit -m "Update documentation" && git push || echo "No docs changes to commit"
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ junit.xml

.next
eslint-report.json
bucket.config.json
reflag.config.json
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"booleanish",
"bucketco",
"openfeature",
"PKCE"
"PKCE",
"Reflag"
]
}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bucket
# Reflag

Feature flags for SaaS that run on TypeScript. [Learn more and get started](https://bucket.co/)
Feature flags for SaaS that run on TypeScript. [Learn more and get started](https://reflag.com/)

## React SDK

Expand All @@ -27,21 +27,21 @@ Use this for Cloudflare Workers as well.

[Read the docs](packages/node-sdk/README.md)

## Bucket CLI
## Reflag CLI

CLI to interact with Bucket and generate types
CLI to interact with Reflag and generate types

[Read the docs](packages/cli/README.md)

## OpenFeature Browser Provider

Use Bucket with OpenFeature in the browser through the Bucket OpenFeature Browser Provider
Use Reflag with OpenFeature in the browser through the Reflag OpenFeature Browser Provider

[Read the docs](packages/openfeature-browser-provider/README.md)

## OpenFeature Node.js Provider

Use the Bucket with OpenFeature on the server in Node.js through the Bucket OpenFeature Node.js Provider
Use the Reflag with OpenFeature on the server in Node.js through the Reflag OpenFeature Node.js Provider

[Read the docs](packages/openfeature-node-provider/README.md)

Expand Down
2 changes: 1 addition & 1 deletion docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ typedoc --treatWarningsAsErrors
SEDCOMMAND='s/globals.md#(.*)-[0-9]+/globals.md#\1/g'

# Find all markdown files including globals.md
FILES=$(find dist/docs/@bucketco -name "*.md")
FILES=$(find dist/docs/@reflag -name "*.md")

echo "Processing markdown files..."
for file in $FILES
Expand Down
Loading