Skip to content

Commit ab464b6

Browse files
committed
Merge branch 'main' into buc-3227-dogfooding-dont-require-satisfaction-score-when-asking-for
2 parents 813522d + 0443d1c commit ab464b6

File tree

210 files changed

+21554
-5446
lines changed

Some content is hidden

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

210 files changed

+21554
-5446
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- v*
87

98
jobs:
109
release:
@@ -18,33 +17,33 @@ jobs:
1817
cache: "yarn"
1918
cache-dependency-path: "**/yarn.lock"
2019
registry-url: "https://registry.npmjs.org"
21-
scope: "@bucketco"
20+
scope: "@reflag"
2221
- name: Install dependencies
2322
run: yarn install --immutable
2423
- name: Build packages
2524
run: yarn build
2625
- name: npm login
2726
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
2827
env:
29-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28+
NPM_TOKEN: ${{ secrets.REFLAG_NPM_TOKEN }}
3029
- name: Publish
3130
run: yarn lerna publish from-package --no-private --yes
3231
- name: Build docs
3332
run: yarn docs
3433
- name: Checkout docs with SSH
3534
uses: actions/checkout@v3
3635
with:
37-
repository: bucketco/docs
36+
repository: reflagcom/docs
3837
ssh-key: ${{ secrets.DOCS_DEPLOY_KEY }}
39-
path: bucket-docs
38+
path: reflag-docs
4039
- name: Copy generated docs to docs repo
4140
run: |
42-
rm -rf bucket-docs/sdk
43-
cp -R dist/docs bucket-docs/sdk
41+
rm -rf reflag-docs/sdk
42+
cp -R dist/docs reflag-docs/sdk
4443
- name: Commit and push changes
4544
run: |
46-
cd bucket-docs
45+
cd reflag-docs
4746
git config user.name "github-actions[bot]"
48-
git config user.email "github-actions[bot]@bucket.co"
47+
git config user.email "github-actions[bot]@reflag.com"
4948
git add sdk
5049
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: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,14 @@
3939
"**/*.lock": true
4040
},
4141
"typescript.tsdk": "node_modules/typescript/lib",
42-
"cSpell.words": ["bucketco", "openfeature"]
42+
"cSpell.words": [
43+
"booleanish",
44+
"bucketco",
45+
"npmjs",
46+
"nvmrc",
47+
"openfeature",
48+
"PKCE",
49+
"Reflag",
50+
"reflagcom"
51+
]
4352
}

README.md

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

3-
Ship quality faster: Feature flags, feature feedback and feature adoption in a single SDK.
4-
5-
[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/)
64

75
## React SDK
86

97
Client side React SDK
108

119
[Read the docs](packages/react-sdk/README.md)
1210

11+
## Vue SDK (beta)
12+
13+
Client side Vue SDK
14+
15+
[Read the docs](packages/vue-sdk/README.md)
16+
1317
## Browser SDK
1418

1519
Browser SDK for use in non-React web applications
@@ -19,24 +23,25 @@ Browser SDK for use in non-React web applications
1923
## Node.js SDK
2024

2125
Node.js SDK for use on the server side.
26+
Use this for Cloudflare Workers as well.
2227

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

25-
## Bucket CLI
30+
## Reflag CLI
2631

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

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

3136
## OpenFeature Browser Provider
3237

33-
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
3439

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

3742
## OpenFeature Node.js Provider
3843

39-
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
4045

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

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)