我安装了一些插件,但是hyperterm-transparent-bg
plugins: [
'hyperterm-material',
'hyperterm-transparent-bg',
'hyperterm-blink'
],
以下不起作用,即使我的路径正确,我仍然会收到无法找到模块错误。
bundle.js:1错误:找不到模块'/Users/leongaban/.hyper_plugins/node_modules/hyperterm-transparent-bg' 在Module._resolveFilename(module.js:455:15)
我重新安装了Hyperterm,看起来它不能重建npm-debug.log文件:(
答案 0 :(得分:0)
尝试在shell
中设置.hyper.js
属性。
我遇到了同样的问题,并在阅读https://github.com/zeit/hyper/issues/1513#issuecomment-281414846
之后通过设置shell属性来解决问题答案 1 :(得分:0)
感谢回答中的这个答案: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工具栏视图菜单中的位置。