-
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
4ac891a
commit 9bad23c
Showing
32 changed files
with
734 additions
and
5,866 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,24 @@ | ||
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 fmt --check | ||
- run: deno lint | ||
- run: deno test | ||
|
||
- 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,18 @@ | ||
{ | ||
"name": "@dldc/rsync", | ||
"version": "4.0.1", | ||
"exports": "./mod.ts", | ||
"imports": { | ||
"$std/": "https://deno.land/[email protected]/", | ||
"@dldc/erreur": "jsr:@dldc/erreur@^7.1.1", | ||
"@dldc/file": "jsr:@dldc/file@^2.0.1", | ||
"sql.js": "npm:sql.js@^1.10.3" | ||
}, | ||
"tasks": { | ||
"test": "deno test --allow-read .", | ||
"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/[email protected]/main.ts *.ts deno.jsonc", | ||
"check": "deno fmt --check . && deno lint . && deno task test" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export * from "./src/apply.ts"; | ||
export * from "./src/diff.ts"; | ||
export { RsyncErreur, type TRsyncErreurData } from "./src/erreur.ts"; | ||
export * from "./src/files/Checksum.ts"; | ||
export * from "./src/files/Diff.ts"; | ||
export * from "./src/prepare.ts"; | ||
export * from "./src/types.ts"; |
Oops, something went wrong.