File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,7 @@ module.exports = {
4848 module : {
4949 rules : [
5050 {
51- test : new RegExp (
52- String . raw `internal[\\/]get-linters\.js$` ,
53- "u"
54- ) ,
51+ test : / i n t e r n a l [ \\ / ] g e t - l i n t e r s \. j s $ / u,
5552 loader : "string-replace-loader" ,
5653 options : {
5754 search : "[\\s\\S]+" , // whole file.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const DEPLOY_ROOT = path.resolve(__dirname, "..")
1010/**
1111 * Execute a command.
1212 * @param {string } command The command to execute.
13- * @returns {void }
13+ * @returns {Promise< void> }
1414 */
1515function exec ( command ) {
1616 console . log ( `> ${ command . replace ( GH_TOKEN , "****" ) } ` )
@@ -52,7 +52,7 @@ function exec(command) {
5252 }
5353
5454 // Commit.
55- await exec ( 'git config --global user.email "star.ctor@gmail.com "' )
55+ await exec ( 'git config --global user.email "public@mysticatea.dev "' )
5656 await exec ( 'git config --global user.name "Toru Nagashima"' )
5757 await exec ( "git add -A" )
5858 let updated = false
You can’t perform that action at this time.
0 commit comments