Fix development CSS editor build being copied instead of the release build

This commit is contained in:
Samuel Elliott 2018-04-14 17:51:02 +01:00
parent 146e108874
commit bcb888100c
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
2 changed files with 5 additions and 1 deletions

View File

@ -127,6 +127,10 @@ export class GuildMember {
return User.fromId(this.user_id);
}
get name() {
return this.nickname || this.user.username;
}
get guild() {
return Guild.fromId(this.guild_id);
}

View File

@ -62,7 +62,7 @@ const cssEditor = function() {
return pump([
gulp.src('./csseditor/dist/csseditor-release.js'),
rename('csseditor.js'),
copy('release/csseditor', { prefix: 2 })
gulp.dest('./release/csseditor')
]);
};