chore: standardjs run
This commit is contained in:
parent
4904be8bad
commit
0e6bb2c7dc
5 changed files with 8 additions and 9 deletions
File diff suppressed because one or more lines are too long
|
|
@ -41,7 +41,7 @@ function resizeScreen () {
|
|||
}
|
||||
|
||||
socket = io.connect({
|
||||
path: "/ssh/socket.io"
|
||||
path: '/ssh/socket.io'
|
||||
})
|
||||
|
||||
term.onData(function (data) {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
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 ExtractTextPlugin = require('extract-text-webpack-plugin')
|
||||
module.exports = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
const TerserPlugin = require('terser-webpack-plugin')
|
||||
const merge = require('webpack-merge')
|
||||
const common = require('./webpack.common.js')
|
||||
|
||||
|
|
@ -9,8 +9,8 @@ module.exports = merge(common, {
|
|||
terserOptions: {
|
||||
parallel: 4,
|
||||
ie8: false,
|
||||
safari10: false
|
||||
safari10: false
|
||||
}
|
||||
})],
|
||||
})]
|
||||
}
|
||||
})
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue