-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from Shougo/jsr
Migrate to JSR
- Loading branch information
Showing
20 changed files
with
121 additions
and
141 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: jsr | ||
|
||
env: | ||
DENO_VERSION: 1.x | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ env.DENO_VERSION }} | ||
- name: Publish | ||
run: | | ||
deno run -A jsr:@david/[email protected] |
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
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
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
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
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,19 +1,10 @@ | ||
export type { | ||
Denops, | ||
Entrypoint, | ||
} from "https://deno.land/x/[email protected]/mod.ts"; | ||
export { | ||
echo, | ||
execute, | ||
} from "https://deno.land/x/[email protected]/helper/mod.ts"; | ||
export { | ||
batch, | ||
collect, | ||
} from "https://deno.land/x/[email protected]/batch/mod.ts"; | ||
export * as op from "https://deno.land/x/[email protected]/option/mod.ts"; | ||
export * as fn from "https://deno.land/x/[email protected]/function/mod.ts"; | ||
export * as vars from "https://deno.land/x/[email protected]/variable/mod.ts"; | ||
export * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts"; | ||
export type { Denops, Entrypoint } from "jsr:@denops/[email protected]"; | ||
export { echo, execute } from "jsr:@denops/[email protected]/helper"; | ||
export { batch, collect } from "jsr:@denops/[email protected]/batch"; | ||
export * as op from "jsr:@denops/[email protected]/option"; | ||
export * as fn from "jsr:@denops/[email protected]/function"; | ||
export * as vars from "jsr:@denops/[email protected]/variable"; | ||
export * as autocmd from "jsr:@denops/[email protected]/autocmd"; | ||
|
||
export { assertEquals, equal } from "jsr:@std/[email protected]"; | ||
export { | ||
|
@@ -22,8 +13,7 @@ export { | |
parse, | ||
SEPARATOR as pathsep, | ||
toFileUrl, | ||
} from "jsr:@std/[email protected]"; | ||
export { deadline, DeadlineError } from "jsr:@std/[email protected]"; | ||
} from "jsr:@std/[email protected]"; | ||
|
||
export { ensure, is, maybe } from "jsr:@core/[email protected]"; | ||
export { Lock } from "jsr:@lambdalisue/[email protected]"; |
Oops, something went wrong.