a few formatting updates

This commit is contained in:
Kyle Spearrin 2017-10-28 22:39:38 -04:00
parent 8a895c8da4
commit 141dfa2dc7
2 changed files with 5 additions and 6 deletions

View File

@ -81,7 +81,7 @@ gulp.task('dist:edge', function (cb) {
});
function copyDistEdge(source, dest) {
return new Promise(function (resolve, reject) {
return new Promise((resolve, reject) => {
gulp.src(source)
.on('error', reject)
.pipe(gulpif('popup/index.html', replace('__BROWSER__', 'edge')))
@ -98,7 +98,7 @@ function copyDistEdge(source, dest) {
}
function copyAssetsEdge(source, dest) {
return new Promise(function (resolve, reject) {
return new Promise((resolve, reject) => {
gulp.src(source)
.on('error', reject)
.pipe(gulpif('AppxManifest.xml', xmlpoke({
@ -133,7 +133,7 @@ gulp.task('webfonts', function () {
// LEGACY CODE!
//
// Needed untill background.js is converted into a proper webpack compatible file.
// Needed until background.js is converted into a proper webpack compatible file.
gulp.task('lint', function () {
return gulp.src([

View File

@ -1,8 +1,7 @@
class StateService {
class StateService {
private state: any = {};
constructor (private utilsService: any, private constantsService: any) {
constructor(private utilsService: any, private constantsService: any) {
}
async init() {