File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
repo-scripts/changelog-generator Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,8 @@ async function getFixedIssueLink(
104
104
return '' ;
105
105
}
106
106
107
- const issueNumber = match . groups ! [ 3 ] ;
107
+ console . log ( match ) ;
108
+ const issueNumber = match [ 3 ] ;
108
109
return `Fixed [#${ issueNumber } ](https://github.com/firebase/firebase-js-sdk/issues/${ issueNumber } )` ;
109
110
}
110
111
Original file line number Diff line number Diff line change 12
12
"lint" : " eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'" ,
13
13
"lint:fix" : " eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'" ,
14
14
"build" : " tsc" ,
15
+ "build:dev" : " tsc -w" ,
15
16
"test" : " yarn type-check && run-p lint test:browser test:node" ,
16
17
"test:ci" : " node ../../scripts/run_tests_in_ci.js" ,
17
18
"test:browser" : " karma start --single-run" ,
You can’t perform that action at this time.
0 commit comments