我安装了一些插件,但出现错误
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 文件:(
尝试在
shell
中设置 .hyper.js
属性。
我也遇到了同样的问题,并在阅读本文后通过设置 shell 属性解决了这个问题 https://github.com/zeit/hyper/issues/1513#issuecomment-281414846
感谢他们的仓库中的这个答案: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 工具栏视图菜单中的位置。