chore: standardjs run

This commit is contained in:
Bill Church 2020-03-14 13:17:10 -04:00
parent 4904be8bad
commit 0e6bb2c7dc
5 changed files with 8 additions and 9 deletions

File diff suppressed because one or more lines are too long

View file

@ -41,7 +41,7 @@ function resizeScreen () {
} }
socket = io.connect({ socket = io.connect({
path: "/ssh/socket.io" path: '/ssh/socket.io'
}) })
term.onData(function (data) { term.onData(function (data) {

View file

@ -1,6 +1,5 @@
const path = require('path') const path = require('path')
const { CleanWebpackPlugin } = require('clean-webpack-plugin'); const { CleanWebpackPlugin } = require('clean-webpack-plugin')
/* const CleanWebpackPlugin = require('clean-webpack-plugin') */
const CopyWebpackPlugin = require('copy-webpack-plugin') const CopyWebpackPlugin = require('copy-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin') const ExtractTextPlugin = require('extract-text-webpack-plugin')
module.exports = { module.exports = {

View file

@ -1,4 +1,4 @@
const TerserPlugin = require('terser-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin')
const merge = require('webpack-merge') const merge = require('webpack-merge')
const common = require('./webpack.common.js') const common = require('./webpack.common.js')
@ -11,6 +11,6 @@ module.exports = merge(common, {
ie8: false, ie8: false,
safari10: false safari10: false
} }
})], })]
} }
}) })