File tree Expand file tree Collapse file tree 3 files changed +9
-26
lines changed Expand file tree Collapse file tree 3 files changed +9
-26
lines changed Original file line number Diff line number Diff line change 5
5
- workflow_call
6
6
7
7
jobs :
8
- lint :
9
- runs-on : ubuntu-latest
10
- steps :
11
- - uses : actions/checkout@v3
12
- - uses : actions/setup-node@v3
13
- with :
14
- node-version : 21
15
- - run : npm install
16
- - run : npm run lint
17
-
18
- typecheck :
19
- runs-on : ubuntu-latest
20
- steps :
21
- - uses : actions/checkout@v3
22
- - uses : actions/setup-node@v3
23
- with :
24
- node-version : 21
25
- - run : npm install
26
- - run : npm run typecheck
27
-
28
8
tests :
29
9
runs-on : ${{ matrix.os }}
30
10
strategy :
Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
branches :
6
6
- main
7
-
7
+ inputs :
8
+ release_type :
9
+ description : " Type of release: major, minor, or patch"
10
+ required : true
11
+ default : " patch"
12
+
8
13
permissions :
9
14
contents : write
10
15
id-token : write
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @adityadarma/adonis-datatables" ,
3
3
"description" : " Package server side datatables on AdonisJS" ,
4
- "version" : " 1.1.21 " ,
4
+ "version" : " 1.1.20 " ,
5
5
"engines" : {
6
6
"node" : " >=20.6.0"
7
7
},
18
18
],
19
19
"exports" : {
20
20
"." : " ./build/index.js" ,
21
- "./datatables" : " ./build/services/main .js" ,
21
+ "./datatables" : " ./build/src/datatables .js" ,
22
22
"./datatables_provider" : " ./build/providers/datatables_provider.js" ,
23
+ "./services/datatables" : " ./build/services/main.js" ,
23
24
"./engines/lucid_datatable" : " ./build/src/engines/lucid_datatable.js" ,
24
25
"./engines/database_datatable" : " ./build/src/engines/database_datatable.js" ,
25
26
"./engines/object_datatable" : " ./build/src/engines/object_datatable.js" ,
102
103
"push" : true ,
103
104
"tagName" : " v${version}"
104
105
},
105
- "github" : {
106
- "release" : true
107
- },
108
106
"npm" : {
109
107
"publish" : true ,
110
108
"skipChecks" : true
You can’t perform that action at this time.
0 commit comments