Skip to content

Commit

Permalink
fix: license ref
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Nov 22, 2024
1 parent 3609fb7 commit 31b5b42
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ Use `deno fmt`, `deno lint` and `biome lint` to check the code.
deno task check
```

See [_Writing documentation_](https://jsr.io/docs/writing-docs) for details about writing JSDoc.

## Publish

Locally check if everything is ok:

```bash
deno publish --dry-run
```

Then once everything is pushed or merged on `main`, run the GitHub actions workflow to publish the packages to JSR
(see [_publishing packages_](https://jsr.io/docs/publishing-packages) for more details).

## Author

Created by [@frytg](https://github.com/frytg) / [frytg.digital](https://www.frytg.digital)
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 @@ -18,4 +18,4 @@ Created by [@frytg](https://github.com/frytg) / [frytg.digital](https://www.fryt

## License

[Unlicense](../LICENSE) - also see [unlicense.org](https://unlicense.org)
[Unlicense](https://github.com/frytg/utility/blob/main/LICENSE) - also see [unlicense.org](https://unlicense.org)
4 changes: 2 additions & 2 deletions check-required-env/check-required-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import logger from '@frytg/logger'
*
* @example
* ```ts
* import { checkRequiredEnv } from 'jsr:@frytg/check-required-env';
* import { checkRequiredEnv } from 'jsr:@frytg/check-required-env'
*
* checkRequiredEnv('MY_IMPORTANT_ENV_VAR');
* checkRequiredEnv('MY_IMPORTANT_ENV_VAR')
* ```
*/
export const checkRequiredEnv = (name: string): void => {
Expand Down
2 changes: 1 addition & 1 deletion logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ Created by [@frytg](https://github.com/frytg) / [frytg.digital](https://www.fryt

## License

[Unlicense](../LICENSE) - also see [unlicense.org](https://unlicense.org)
[Unlicense](https://github.com/frytg/utility/blob/main/LICENSE) - also see [unlicense.org](https://unlicense.org)

0 comments on commit 31b5b42

Please sign in to comment.