Skip to content

Commit 139acfe

Browse files
pavkamSwiftwork
andauthored
Reflag (Lite) (#465)
Co-authored-by: Erik Hughes <erik.hughes@outlook.com>
1 parent 7755412 commit 139acfe

File tree

163 files changed

+3539
-3580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+3539
-3580
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
cache: "yarn"
1818
cache-dependency-path: "**/yarn.lock"
1919
registry-url: "https://registry.npmjs.org"
20-
scope: "@bucketco"
20+
scope: "@reflag"
2121
- name: Install dependencies
2222
run: yarn install --immutable
2323
- name: Build packages
2424
run: yarn build
2525
- name: npm login
2626
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
2727
env:
28-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28+
NPM_TOKEN: ${{ secrets.REFLAG_NPM_TOKEN }}
2929
- name: Publish
3030
run: yarn lerna publish from-package --no-private --yes
3131
- name: Build docs
@@ -38,12 +38,12 @@ jobs:
3838
path: bucket-docs
3939
- name: Copy generated docs to docs repo
4040
run: |
41-
rm -rf bucket-docs/sdk
42-
cp -R dist/docs bucket-docs/sdk
41+
rm -rf reflag-docs/sdk
42+
cp -R dist/docs reflag-docs/sdk
4343
- name: Commit and push changes
4444
run: |
45-
cd bucket-docs
45+
cd reflag-docs
4646
git config user.name "github-actions[bot]"
47-
git config user.email "github-actions[bot]@bucket.co"
47+
git config user.email "github-actions[bot]@reflag.com"
4848
git add sdk
4949
git commit -m "Update documentation" && git push || echo "No docs changes to commit"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ junit.xml
4141

4242
.next
4343
eslint-report.json
44-
bucket.config.json
44+
reflag.config.json

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"booleanish",
4444
"bucketco",
4545
"openfeature",
46-
"PKCE"
46+
"PKCE",
47+
"Reflag"
4748
]
4849
}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Bucket
1+
# Reflag
22

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

55
## React SDK
66

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

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

30-
## Bucket CLI
30+
## Reflag CLI
3131

32-
CLI to interact with Bucket and generate types
32+
CLI to interact with Reflag and generate types
3333

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

3636
## OpenFeature Browser Provider
3737

38-
Use Bucket with OpenFeature in the browser through the Bucket OpenFeature Browser Provider
38+
Use Reflag with OpenFeature in the browser through the Reflag OpenFeature Browser Provider
3939

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

4242
## OpenFeature Node.js Provider
4343

44-
Use the Bucket with OpenFeature on the server in Node.js through the Bucket OpenFeature Node.js Provider
44+
Use the Reflag with OpenFeature on the server in Node.js through the Reflag OpenFeature Node.js Provider
4545

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

docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ typedoc --treatWarningsAsErrors
1616
SEDCOMMAND='s/globals.md#(.*)-[0-9]+/globals.md#\1/g'
1717

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

2121
echo "Processing markdown files..."
2222
for file in $FILES

0 commit comments

Comments
 (0)