File tree Expand file tree Collapse file tree 3 files changed +2
-41
lines changed Expand file tree Collapse file tree 3 files changed +2
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
"format-check" : " prettier --check '**/*.ts'" ,
11
11
"lint" : " eslint src/**/*.ts" ,
12
12
"package" : " ncc build --source-map --license licenses.txt" ,
13
- "test" : " jest" ,
14
- "all" : " npm run build && npm run format && npm run lint && npm run package && npm test"
13
+ "all" : " npm run build && npm run format && npm run lint && npm run package"
15
14
},
16
15
"repository" : {
17
16
"type" : " git" ,
39
38
"eslint" : " ^7.32.0" ,
40
39
"eslint-plugin-github" : " ^4.3.2" ,
41
40
"eslint-plugin-jest" : " ^25.3.2" ,
42
- "jest" : " ^27.2.5" ,
43
41
"js-yaml" : " ^4.1.0" ,
44
42
"prettier" : " 2.5.1" ,
45
43
"ts-jest" : " ^27.1.2" ,
Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ export async function generateChangelog(
65
65
// Find all the commits between the current release and the last release.
66
66
const commits = shell
67
67
. exec (
68
- // eslint-disable-next-line no-useless-escape
69
- `git --no-pager -C ~/Desktop/warp/warp log ${ lastReleaseVersion } ..${ currentVersion } --pretty=format:"\"%H\""` ,
68
+ `git --no-pager -C ~/Desktop/warp/warp log ${ lastReleaseVersion } ..${ currentVersion } --pretty=format:""%H""` ,
70
69
{ silent : true }
71
70
)
72
71
. stdout . trim ( )
You can’t perform that action at this time.
0 commit comments