1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00

Fix mangling issue

This commit is contained in:
Tim Daubenschütz 2015-06-15 08:44:44 +02:00
parent 7d5780d62a
commit 989b121678
7 changed files with 7 additions and 7 deletions

View File

@ -172,7 +172,7 @@ function bundle(watch) {
loadMaps: true loadMaps: true
}))) // loads map from browserify file }))) // loads map from browserify file
.pipe(gulpif(!argv.production, sourcemaps.write())) // writes .map 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(gulp.dest('./build/js'))
.pipe(browserSync.stream()); .pipe(browserSync.stream());
} }

View File

@ -63,4 +63,4 @@ class EditionListStore {
} }
} }
export default alt.createStore(EditionListStore); export default alt.createStore(EditionListStore, 'EditionListStore');

View File

@ -15,4 +15,4 @@ class EditionStore {
} }
} }
export default alt.createStore(EditionStore); export default alt.createStore(EditionStore, 'EditionStore');

View File

@ -37,4 +37,4 @@ class GlobalNotificationStore {
} }
} }
export default alt.createStore(GlobalNotificationStore); export default alt.createStore(GlobalNotificationStore, 'GlobalNotificationStore');

View File

@ -76,4 +76,4 @@ class PieceListStore {
} }
} }
export default alt.createStore(PieceListStore); export default alt.createStore(PieceListStore, 'PieceListStore');

View File

@ -15,4 +15,4 @@ class PieceStore {
} }
} }
export default alt.createStore(PieceStore); export default alt.createStore(PieceStore, 'PieceStore');

View File

@ -15,4 +15,4 @@ class UserStore {
} }
} }
export default alt.createStore(UserStore); export default alt.createStore(UserStore, 'UserStore');