File tree Expand file tree Collapse file tree 5 files changed +45
-55
lines changed Expand file tree Collapse file tree 5 files changed +45
-55
lines changed Original file line number Diff line number Diff line change
1
+ name : jsr
2
+
3
+ env :
4
+ DENO_VERSION : 1.x
5
+
6
+ on :
7
+ push :
8
+ tags :
9
+ - " v*"
10
+
11
+ permissions :
12
+ contents : read
13
+ id-token : write
14
+
15
+ jobs :
16
+ publish :
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - uses : actions/checkout@v4
20
+ with :
21
+ fetch-depth : 0
22
+ - uses : denoland/setup-deno@v1
23
+ with :
24
+ deno-version : ${{ env.DENO_VERSION }}
25
+ - name : Publish
26
+ run : |
27
+ deno run -A jsr:@david/[email protected]
Original file line number Diff line number Diff line change 36
36
run : deno fmt --check
37
37
- name : Type check
38
38
run : deno task check
39
+
40
+ jsr-publish :
41
+ runs-on : ubuntu-latest
42
+ steps :
43
+ - uses : actions/checkout@v4
44
+ - uses : denoland/setup-deno@v1
45
+ with :
46
+ deno-version : ${{ env.DENO_VERSION }}
47
+ - name : Publish (dry-run)
48
+ run : |
49
+ deno publish --dry-run
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# 🪐 denops_core
2
2
3
- [ ![ test] ( https://github.com/vim-denops/deno-denops/workflows/test/badge.svg )] ( https://github.com/vim-denops/deno-denops/actions?query=workflow%3Atest )
3
+ [ ![ jsr] ( https://img.shields.io/jsr/v/%40denops/core?logo=javascript&logoColor=white )] ( https://jsr.io/@denops/core )
4
+ [ ![ denoland] ( https://img.shields.io/github/v/release/vim-denops/deno-denops-core?logo=deno&label=denoland )] ( https://deno.land/x/denops_core )
4
5
[ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/denops_core/mod.ts )
5
- [ ![ deno land ] ( http ://img.shields.io/badge/available%20on- deno.land/x/denops__core-lightgrey .svg?logo=deno )] ( https://deno.land/x/denops_core )
6
+ [ ![ test ] ( https ://github.com/vim-denops/ deno-denops/workflows/test/badge .svg)] ( https://github.com/vim-denops/deno-denops/actions?query=workflow%3Atest )
6
7
7
8
This module is a fundamental component of [ denops.vim] , an ecosystem for
8
9
crafting plugins in [ Deno] for Vim/Neovim.
Original file line number Diff line number Diff line change 1
1
{
2
- "lock" : false ,
2
+ "name" : " @denops/core" ,
3
+ "version" : " 0.0.0" ,
4
+ "exports" : " ./mod.ts" ,
3
5
"tasks" : {
4
6
"test" : " deno test -A --parallel --shuffle --doc --coverage=.coverage" ,
5
7
"check" : " deno check ./**/*.ts" ,
6
- "coverage" : " deno coverage .coverage" ,
7
- "upgrade" :
" deno run -q -A https://deno.land/x/[email protected] /cli.ts ./**/*.ts" ,
8
- "upgrade:commit" : " deno task -q upgrade --commit --prefix :package: --pre-commit=fmt"
8
+ "coverage" : " deno coverage .coverage"
9
9
}
10
10
}
You can’t perform that action at this time.
0 commit comments