mirror of
https://github.com/ascribe/onion.git
synced 2024-11-13 16:45:05 +01:00
Fix mangling issue
This commit is contained in:
parent
7d5780d62a
commit
989b121678
@ -172,7 +172,7 @@ function bundle(watch) {
|
||||
loadMaps: true
|
||||
}))) // loads map from browserify file
|
||||
.pipe(gulpif(!argv.production, sourcemaps.write())) // writes .map file
|
||||
.pipe(gulpif(argv.production, uglify({mangle: false})))
|
||||
.pipe(gulpif(argv.production, uglify()))
|
||||
.pipe(gulp.dest('./build/js'))
|
||||
.pipe(browserSync.stream());
|
||||
}
|
||||
|
@ -63,4 +63,4 @@ class EditionListStore {
|
||||
}
|
||||
}
|
||||
|
||||
export default alt.createStore(EditionListStore);
|
||||
export default alt.createStore(EditionListStore, 'EditionListStore');
|
@ -15,4 +15,4 @@ class EditionStore {
|
||||
}
|
||||
}
|
||||
|
||||
export default alt.createStore(EditionStore);
|
||||
export default alt.createStore(EditionStore, 'EditionStore');
|
||||
|
@ -37,4 +37,4 @@ class GlobalNotificationStore {
|
||||
}
|
||||
}
|
||||
|
||||
export default alt.createStore(GlobalNotificationStore);
|
||||
export default alt.createStore(GlobalNotificationStore, 'GlobalNotificationStore');
|
||||
|
@ -76,4 +76,4 @@ class PieceListStore {
|
||||
}
|
||||
}
|
||||
|
||||
export default alt.createStore(PieceListStore);
|
||||
export default alt.createStore(PieceListStore, 'PieceListStore');
|
||||
|
@ -15,4 +15,4 @@ class PieceStore {
|
||||
}
|
||||
}
|
||||
|
||||
export default alt.createStore(PieceStore);
|
||||
export default alt.createStore(PieceStore, 'PieceStore');
|
||||
|
@ -15,4 +15,4 @@ class UserStore {
|
||||
}
|
||||
}
|
||||
|
||||
export default alt.createStore(UserStore);
|
||||
export default alt.createStore(UserStore, 'UserStore');
|
||||
|
Loading…
Reference in New Issue
Block a user