-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: 3.3.0 | ||
version: 3.3.1 | ||
commit: Bump to version v%.%.% | ||
files: | ||
README.md: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<img src="https://raw.githubusercontent.com/kt3k/license-checker/main/.github/logo.svg" width="300"> | ||
|
||
# license-checker v3.3.0 | ||
# license-checker v3.3.1 | ||
|
||
[![ci](https://github.com/kt3k/license-checker/actions/workflows/ci.yml/badge.svg)](https://github.com/kt3k/license-checker/actions/workflows/ci.yml) | ||
[![codecov](https://codecov.io/gh/kt3k/license-checker/branch/main/graph/badge.svg?token=pbV4Qsg70v)](https://codecov.io/gh/kt3k/license-checker) | ||
|
@@ -12,7 +12,7 @@ A utility for checking license headers in the files in a directory. | |
Use via Deno: | ||
|
||
```shell | ||
deno run --allow-read jsr:@kt3k/[email protected].0/main | ||
deno run --allow-read jsr:@kt3k/[email protected].1/main | ||
``` | ||
|
||
Use via npx: | ||
|
@@ -34,7 +34,7 @@ Create `.licenserc.json` like the following: | |
Then run: | ||
|
||
```console | ||
deno run --allow-read jsr:@kt3k/[email protected].0/main | ||
deno run --allow-read jsr:@kt3k/[email protected].1/main | ||
``` | ||
|
||
This checks the license lines in the files under the current directory. | ||
|
@@ -125,7 +125,7 @@ Options: | |
# API | ||
|
||
```ts | ||
import { checkLicense } from "jsr:@kt3k/[email protected].0"; | ||
import { checkLicense } from "jsr:@kt3k/[email protected].1"; | ||
``` | ||
|
||
## `checkLicense(configs: Config[], options: Options): Promise<boolean>` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ Options: | |
} | ||
|
||
if (opts.version) { | ||
console.log("3.3.0"); | ||
console.log("3.3.1"); | ||
Deno.exit(0); | ||
} | ||
|
||
|