Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Fixed npm packages (security audit & updated module) #2054

Merged
merged 1 commit into from Sep 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"presets": [
[
"env", { "modules": false }
"env", {
"modules": false
}
]
]
}
5 changes: 0 additions & 5 deletions app/bin/startMEW.js

This file was deleted.

9 changes: 1 addition & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,6 @@ function onSuccess(msg) {
}
}

function notifyFunc(msg) {
return gulp.src('.', { read: false })
.pipe(notify(onSuccess(msg)))
}



// HTML / TPL Pages
let htmlFiles = app + 'layouts/*.html';
let tplFiles = app + 'includes/*.tpl';
Expand Down Expand Up @@ -103,7 +96,7 @@ let js_destFolder_CX = dist_CX + 'js/';
let js_destFile = 'etherwallet-master.js';
let browseOpts = { debug: true }; // generates inline source maps - only in js-debug
let babelOpts = {
presets: ['es2015'],
presets: ['env'],
compact: false,
global: true
};
Expand Down
Loading