Skip to content

Commit

Permalink
fix: jsr prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Dec 16, 2024
1 parent 789f2eb commit 052c297
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

env:
JSR_DEPENDENCIES: "@cross/test @std/assert @std/fmt @frytg/logger @frytg/dates"
JSR_DEPENDENCIES: "@cross/test @std/assert @std/fmt @frytg/logger"
NPM_DEPENDENCIES: "luxon sinon"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion check-required-env/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Simply check if a certain required environment variable is set. If not, throw an error and exit the process.

```ts
import { checkRequiredEnv } from 'jsr:@frytg/check-required-env';
import { checkRequiredEnv } from '@frytg/check-required-env';

checkRequiredEnv('MY_IMPORTANT_ENV_VAR');
```
Expand Down
2 changes: 1 addition & 1 deletion check-required-env/check-required-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import logger from '@frytg/logger'
*
* @example
* ```ts
* import { checkRequiredEnv } from 'jsr:@frytg/check-required-env'
* import { checkRequiredEnv } from '@frytg/check-required-env'
*
* checkRequiredEnv('MY_IMPORTANT_ENV_VAR')
* ```
Expand Down
2 changes: 1 addition & 1 deletion logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Debug logs will only be logged if the env `STAGE` is set to `dev`.
## Usage

```ts
import logger from 'jsr:@frytg/logger';
import logger from '@frytg/logger';
```

```ts
Expand Down
2 changes: 1 addition & 1 deletion logger/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const formatConfigLocal: Logform.Format = format.combine(
*
* @example basic log
* ```ts
* import { logger } from 'jsr:@frytg/logger'
* import { logger } from '@frytg/logger'
*
* logger.log({
* level: 'debug',
Expand Down

0 comments on commit 052c297

Please sign in to comment.