-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
ad85f15
commit 58777da
Showing
48 changed files
with
1,023 additions
and
36,610 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write # The OIDC ID token is used for authentication with JSR. | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.x # Run with latest stable Deno. | ||
|
||
- run: deno task check | ||
|
||
- run: npx jsr publish |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"eslint.useFlatConfig": true | ||
"deno.enable": true, | ||
"editor.defaultFormatter": "denoland.vscode-deno", | ||
"npm.autoDetect": "off" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "@dldc/humpf", | ||
"version": "7.0.0", | ||
"exports": "./mod.ts", | ||
"imports": { | ||
"$std/": "https://deno.land/std@0.224.0/", | ||
"$canvas/": "https://deno.land/x/canvas@v1.4.1/", | ||
"@dldc/erreur": "jsr:@dldc/erreur@^7.1.1" | ||
}, | ||
"tasks": { | ||
"test": "deno test -A", | ||
"test:watch": "deno test --watch", | ||
"bump": "deno run -A jsr:@mys/bump@1", | ||
"update": "deno run --allow-read=. --allow-write=. --allow-net https://deno.land/x/udd@0.8.2/main.ts *.ts deno.jsonc", | ||
"check": "deno fmt --check . && deno lint . && deno task test" | ||
}, | ||
"lint": { | ||
"rules": { "exclude": ["no-explicit-any"] } | ||
}, | ||
"exclude": ["tests/data"] | ||
} |
Oops, something went wrong.