我安装了一些插件,但是hyperterm-transparent-bg出错了
plugins: [
'hyperterm-material',
'hyperterm-transparent-bg',
'hyperterm-blink'
],以下内容不起作用,而且我一直得到一个无法找到的模块错误,即使我的路径是正确的。


'/Users/leongaban/.hyper_plugins/node_modules/hyperterm-transparent-bg‘错误:无法在Module._resolveFilename (module.js:455:15)找到模块Module._resolveFilename
我重新安装了Hyperterm,看起来它不可能重新构建npm-调试器日志文件:(
发布于 2017-03-06 14:54:51
感谢回购中的这个答案:https://github.com/dfrankland/hyper-transparent-bg/issues/9#issuecomment-284415902
显然,它改为了这个插件:https://www.npmjs.com/package/hyper-transparent
我使用yarn而不是npm来安装它:yarn add npm i hyper-transparent
然后在我的.hyper.js配置中:
plugins: [
'hyperterm-material',
'hyperterm-blink',
'hyper-transparent'
]开始工作了!花了我一秒钟才意识到透明度控制在OSX工具栏的视图菜单中的位置。

发布于 2017-03-04 10:55:01
尝试在shell中设置.hyper.js属性。
我一直有相同的问题,并通过在读取此https://github.com/zeit/hyper/issues/1513#issuecomment-281414846后设置shell属性来修复它。
https://stackoverflow.com/questions/42582846
复制相似问题