Skip to content

Commit 3ab63c2

Browse files
committed
chore: fix build
Signed-off-by: Marcel Klehr <[email protected]>
1 parent e72c2c7 commit 3ab63c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gulpfile.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ const devjs = function() {
9292

9393
const js = async function() {
9494
fs.mkdirSync(paths.distJs,{ recursive: true })
95+
let statsJson
9596
await new Promise((resolve) =>
9697
webpack(config, (err, stats) => {
9798
console.log(
@@ -104,11 +105,11 @@ const js = async function() {
104105
console.log('Webpack', err)
105106
return
106107
}
107-
const statsJson = stats.toJson()
108-
html(statsJson)
108+
statsJson = stats.toJson()
109109
resolve()
110110
})
111111
)
112+
html(statsJson)
112113
}
113114

114115
const html = function(statsJson) {

src/ui/store/native/mutations.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import Vue from 'vue'
22
import { mutations } from '../definitions'
3-
import NativeAccountStorage from '../../../lib/native/NativeAccountStorage'
43

54
export const mutationsDefinition = {
65
[mutations.SET_LOCKED](state, locked) {

0 commit comments

Comments
 (0)