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