File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"watch" : " webpack --config webpack/webpack.dev.js --watch" ,
8
8
"build" : " webpack --config webpack/webpack.prod.js" ,
9
+ "build.firefox" : " npm run build && mv dist/manifest.firefox.json dist/manifest.json" ,
9
10
"lint" : " prettier --write \" src/**/*.{ts,tsx}\" "
10
11
},
11
12
"author" : " " ,
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ import {
33
33
} from "../common/fetchers" ;
34
34
import { print } from "src/utils" ;
35
35
import Sentry from "../../common/sentry" ;
36
- import { isFileUrl } from "../common/utils" ;
37
36
38
37
const globals : {
39
38
coverageReport ?: FileCoverageReport ;
@@ -375,6 +374,7 @@ function clearElements() {
375
374
376
375
function clearAnimationAndAnnotations ( ) {
377
376
clearAnimation ( lineSelector , annotateLine ) ;
377
+ clearAnimation ( noVirtLineSelector , annotateLine ) ;
378
378
clearAnnotations ( ( line : HTMLElement ) => {
379
379
line . style . backgroundColor = "inherit" ;
380
380
} ) ;
You can’t perform that action at this time.
0 commit comments