Skip to content

Commit 07ccc9d

Browse files
committed
chore: Upgrade all node deps
1 parent b4dae67 commit 07ccc9d

24 files changed

+9342
-16161
lines changed

scripts/misc.bash

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ function golang_lint_check() {
99
function golang_lint_fix() {
1010
gofmt -w ./interfacer
1111
}
12+
13+
function prettier_fix() {
14+
pushd "$PROJECT_ROOT"/webext || _panic
15+
prettier --write '{src,test}/**/*.js'
16+
popd || _panic
17+
}

webext/.mocharc.cjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
'use strict';
2+
3+
module.exports = {
4+
require: 'babel-register',
5+
recursive: true,
6+
timeout: '60000'
7+
};
8+

0 commit comments

Comments
 (0)