File tree Expand file tree Collapse file tree 4 files changed +8
-17
lines changed Expand file tree Collapse file tree 4 files changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -128,17 +128,16 @@ jobs:
128
128
with :
129
129
node-version : 12.x
130
130
131
- - name : Download JS artifacts
131
+ - name : Generate NPM package and release
132
+ run : |
133
+ node scripts/make-npm-release.js
134
+
135
+ - name : Download JavaScript artifact
132
136
if : ${{ success() }}
133
137
uses : actions/download-artifact@master
134
138
with :
135
139
name : index.js
136
- path : index.js
137
-
138
- - name : Generate NPM package and release
139
- run : |
140
- node scripts/make-npm-release.js;
141
- mv index.js _release/index.js;
140
+ path : _release/index.js
142
141
143
142
- name : Download linux artifacts
144
143
if : ${{ success() }}
Original file line number Diff line number Diff line change 1
- let version = "0.5.16 " ;
1
+ let version = "0.5.17 " ;
2
2
let description = "query-json is a faster and simpler re-implementation of jq in Reason Native" ;
3
3
4
4
let repo = "https://github.com/davesnx/query-json" ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @davesnx/query-json" ,
3
- "version" : " 0.5.16 " ,
3
+ "version" : " 0.5.17 " ,
4
4
"description" : " faster and simpler re-implementation of jq in Reason Native" ,
5
5
"author" :
" davesnx <[email protected] >" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -37,14 +37,6 @@ Fs.copyFileSync(
37
37
Path . join ( releaseFolder , 'postinstall.js' )
38
38
) ;
39
39
40
- const filesToTouch = [ 'query-json' ] ;
41
-
42
- for ( const file of filesToTouch ) {
43
- const p = Path . join ( releaseFolder , file ) ;
44
- mkdirpSync ( Path . dirname ( p ) ) ;
45
- Fs . writeFileSync ( p , '' ) ;
46
- }
47
-
48
40
const pkgJson = {
49
41
...esyJson ,
50
42
scripts : {
You can’t perform that action at this time.
0 commit comments