Skip to content

Commit 897b0f7

Browse files
authored
Merge pull request #65 from cipherstash/protect-branding
feat: rebrand jseql to protect
2 parents 58da095 + b506dec commit 897b0f7

46 files changed

Lines changed: 242 additions & 259 deletions

Some content is hidden

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

.changeset/smooth-walls-camp.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@cipherstash/nextjs": major
3+
"@cipherstash/basic-example": major
4+
"@cipherstash/protect": major
5+
---
6+
7+
Rebrand jseql to protect.

.github/workflows/tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
- name: Install dependencies
2929
run: pnpm install
3030

31-
- name: Create .env file in ./packages/jseql/
31+
- name: Create .env file in ./packages/protect/
3232
run: |
33-
touch ./packages/jseql/.env
34-
echo "CS_WORKSPACE_ID=${{ secrets.CS_WORKSPACE_ID }}" >> ./packages/jseql/.env
35-
echo "CS_CLIENT_ID=${{ secrets.CS_CLIENT_ID }}" >> ./packages/jseql/.env
36-
echo "CS_CLIENT_KEY=${{ secrets.CS_CLIENT_KEY }}" >> ./packages/jseql/.env
37-
echo "CS_CLIENT_ACCESS_KEY=${{ secrets.CS_CLIENT_ACCESS_KEY }}" >> ./packages/jseql/.env
33+
touch ./packages/protect/.env
34+
echo "CS_WORKSPACE_ID=${{ secrets.CS_WORKSPACE_ID }}" >> ./packages/protect/.env
35+
echo "CS_CLIENT_ID=${{ secrets.CS_CLIENT_ID }}" >> ./packages/protect/.env
36+
echo "CS_CLIENT_KEY=${{ secrets.CS_CLIENT_KEY }}" >> ./packages/protect/.env
37+
echo "CS_CLIENT_ACCESS_KEY=${{ secrets.CS_CLIENT_ACCESS_KEY }}" >> ./packages/protect/.env
3838
3939
# Run TurboRepo tests
4040
- name: Run tests

CONTRIBUTE.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# How to contribute to jseql
1+
# How to contribute to @cipherstash/protect
22

33
## I want to report a bug, or make a feature request
44

55
Please use the GitHub issue tracker to report bugs, suggest features, or documentation improvements.
66

7-
[When filing an issue](https://github.com/cipherstash/jseql/issues/new/choose), please check [existing open](https://github.com/cipherstash/jseql/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc), or [recently closed](https://github.com/cipherstash/jseql/issues?q=is%3Aissue+sort%3Aupdated-desc+is%3Aclosed), issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can.
7+
[When filing an issue](https://github.com/cipherstash/protectjs/issues/new/choose), please check [existing open](https://github.com/cipherstash/protectjs/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc), or [recently closed](https://github.com/cipherstash/protectjs/issues?q=is%3Aissue+sort%3Aupdated-desc+is%3Aclosed), issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can.
88

99
---
1010

11-
# Contributing to JSEQL
11+
# Contributing to @cipherstash/protect
1212

13-
Thank you for your interest in contributing to **jseql**! This document will walk you through the repository’s structure, how to build and run the project locally, and how to make contributions effectively.
13+
Thank you for your interest in contributing to **@cipherstash/protect**! This document will walk you through the repository’s structure, how to build and run the project locally, and how to make contributions effectively.
1414

1515
## Repository Structure
1616

@@ -21,7 +21,7 @@ Thank you for your interest in contributing to **jseql**! This document will wal
2121
│ └── example-app-2/
2222
2323
├── packages/
24-
│ └── jseql/ <-- Main package published to npm
24+
│ └── protect/ <-- Main package published to npm
2525
2626
├── .changeset/
2727
├── .turbo/
@@ -34,21 +34,21 @@ Thank you for your interest in contributing to **jseql**! This document will wal
3434

3535
This repo uses [Turborepo](https://turbo.build/) to manage multiple packages and apps in a monorepo structure. Turborepo orchestrates tasks (build, test, lint, etc.) across the different packages in a consistent and efficient manner.
3636

37-
### `packages/jseql`
37+
### `packages/protect`
3838

39-
The **jseql** package is the core library that is published to npm under the `@cipherstash/jseql` namespace. This is likely where you’ll spend most of your time if you’re contributing new features or bug fixes related to JSEQL’s core functionality.
39+
The **@cipherstash/protect** package is the core library that is published to npm under the `@cipherstash/protect` namespace. This is likely where you’ll spend most of your time if you’re contributing new features or bug fixes related to JSEQL’s core functionality.
4040

4141
### `apps/` Directory
4242

43-
Within the `apps/` directory, you’ll find example applications that demonstrate how to use **jseql**. These example apps reference the local `@cipherstash/jseql` package, allowing you to test and verify your changes to **jseql** in a real-world application scenario.
43+
Within the `apps/` directory, you’ll find example applications that demonstrate how to use **@cipherstash/protect**. These example apps reference the local `@cipherstash/protect` package, allowing you to test and verify your changes to **@cipherstash/protect** in a real-world application scenario.
4444

4545
## Setup Instructions
4646

4747
### 1. Clone the Repo
4848

4949
```bash
50-
git clone https://github.com/cipherstash/jseql.git
51-
cd jseql
50+
git clone https://github.com/cipherstash/protectjs.git
51+
cd protectjs
5252
```
5353

5454
### 2. Install Dependencies
@@ -59,13 +59,13 @@ pnpm install
5959

6060
### 4. Build the Main Package
6161

62-
Before you can run any example apps, you need to build the `@cipherstash/jseql` package:
62+
Before you can run any example apps, you need to build the `@cipherstash/protect` package:
6363

6464
```bash
6565
pnpm run build
6666
```
6767

68-
This command triggers Turborepo’s build pipeline, compiling the **jseql** package in `packages/jseql` and linking it locally so the example apps can reference it.
68+
This command triggers Turborepo’s build pipeline, compiling the **@cipherstash/protect** package in `packages/protect` and linking it locally so the example apps can reference it.
6969

7070
### 5. Run an Example App
7171

@@ -77,7 +77,7 @@ pnpm run dev
7777

7878
Navigate to one of the example apps in `apps/` and follow the instructions for the corresponding examples.
7979

80-
Now, you can view the running application (if it’s a web or server app) or otherwise test the example’s output. This will help confirm your local build of **jseql** is working correctly.
80+
Now, you can view the running application (if it’s a web or server app) or otherwise test the example’s output. This will help confirm your local build of **@cipherstash/protect** is working correctly.
8181

8282
## Making Changes
8383

@@ -86,7 +86,7 @@ Now, you can view the running application (if it’s a web or server app) or oth
8686
git checkout -b feat/my-new-feature
8787
```
8888

89-
2. **Implement your changes** in the relevant package (most likely in `packages/jseql`).
89+
2. **Implement your changes** in the relevant package (most likely in `packages/protect`).
9090

9191
3. **Write tests** to cover any new functionality or bug fixes.
9292

0 commit comments

Comments
 (0)