Skip to content

Commit

Permalink
Merge branch 'main' into fix/990-dedicated-authjs-host-value
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenix-ru authored Feb 6, 2025
2 parents 326781e + 956b0fa commit 172dc93
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ To start developing on this package, please follow the quick start guide below.
git checkout main
git pull
```
2. Set up the correct ppm version, using [Corepack](https://nodejs.org/api/corepack.html) and install the dependencies
2. Set up the correct pnpm version, using [Corepack](https://nodejs.org/api/corepack.html) and install the dependencies
```sh
corepack enable ppm
ppm install
corepack enable pnpm
pnpm install
```
4. Create a new branch (based on the `main` branch):
```sh
Expand All @@ -83,14 +83,14 @@ To start developing on this package, please follow the quick start guide below.
6. Add or update any tests that relate to your changes.
7. Ensure that the `tests,` `lint,` and `prepack` all pass
```sh
ppm prepack
ppm lint
ppm type check
pnpm prepack
pnpm lint
pnpm typecheck

# Test any provider that you have modified
cd playground-<provider>
ppm build
ppm test:e2e
pnpm build
pnpm test:e2e
```
8. [Open a Pull Request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests), and fill out the provided fields.

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/application-side/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Configuration of the application-side session. You can configure the following a
### `enablePeriodically`

- **Type**: `boolean | number`
- **Default**: `undefined`
- **Default**: `false`

Whether to refresh the session every `X` milliseconds. The refresh will only happen if a session already exists.
Setting this to a number `X` will refresh the session every `X` milliseconds.
Expand Down

0 comments on commit 172dc93

Please sign in to comment.