File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ const devjs = function() {
9292
9393const 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
114115const html = function ( statsJson ) {
Original file line number Diff line number Diff line change 11import Vue from 'vue'
22import { mutations } from '../definitions'
3- import NativeAccountStorage from '../../../lib/native/NativeAccountStorage'
43
54export const mutationsDefinition = {
65 [ mutations . SET_LOCKED ] ( state , locked ) {
You can’t perform that action at this time.
0 commit comments