bundle size opt

This commit is contained in:
Eugene Pankov
2021-04-08 22:26:47 +02:00
parent 50b1fb2410
commit 8bfc86e623
12 changed files with 178 additions and 103 deletions

View File

@@ -16,12 +16,14 @@
],
"author": "Eugene Pankov",
"license": "MIT",
"dependencies": {
"hterm-umdjs": "1.4.1"
},
"devDependencies": {
"@types/deep-equal": "^1.0.0",
"ansi-colors": "^4.1.1",
"dataurl": "0.1.0",
"deep-equal": "1.1.0",
"hterm-umdjs": "1.4.1",
"mz": "^2.6.0",
"ps-node": "^0.1.6",
"runes": "^0.4.2",

Binary file not shown.

View File

@@ -31,5 +31,5 @@ x-row > span {
@font-face {
font-family: "monospace-fallback";
src: url(../fonts/Meslo.otf) format("opentype");
src: url(../fonts/SourceCodePro.otf) format("opentype");
}

View File

@@ -174,7 +174,7 @@
@font-face {
font-family: "monospace-fallback";
src: url(../fonts/Meslo.otf) format("opentype");
src: url(../fonts/SourceCodePro.otf) format("opentype");
}
.xterm-viewport::-webkit-scrollbar {

View File

@@ -3,6 +3,10 @@ const config = require('../webpack.plugin.config')
module.exports = config({
name: 'terminal',
dirname: __dirname,
externals: [
'hterm-umdjs',
'opentype.js',
],
})
module.exports.resolve.modules.push('node_modules/xterm/src')
module.exports.module.rules.find(x => x.use.loader === 'awesome-typescript-loader').use.options.paths['*'].push(path.resolve(__dirname, './node_modules/xterm/src/*'))