Py学习  »  Git

错误插件加载失败:部署博客时hexo deployer git

Hz-zhang • 4 年前 • 778 次点击  

Git,node,hexo都安装正确,但是当我安装hexo deployer Git时,所有hexo命令都会出现以下问题。这个插件有问题吗?我该怎么解决? 下面是一条错误消息,你能帮我吗?

        '''
$ hexo d
ERROR Plugin load failed: hexo-deployer-git
D:\blog\node_modules\picomatch\lib\picomatch.js:54
    let ignoreOpts = { ...options, ignore: null, onMatch: null, onResult: null };
                       ^^^
SyntaxError: Unexpected token ...
    at createScript (vm.js:53:10)
    at Object.runInThisContext (vm.js:95:10)
    at Module._compile (module.js:543:28)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)
    at Module.require (module.js:498:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (D:\blog\node_modules\picomatch\index.js:3:18)
    at Module._compile (module.js:571:32)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)
    at Module.require (module.js:498:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (D:\blog\node_modules\hexo-deployer-git\node_modules\readdirp\index.js:6:19)
    at Module._compile (module.js:571:32)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
ERROR Deployer not found: git
        '''
Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/50721
 
778 次点击  
文章 [ 1 ]  |  最新文章 4 年前
Bill
Reply   •   1 楼
Bill    4 年前

您可能正在运行不支持该语法的旧版本的Node。SyntaxError是由spread运算符引起的 ... ,这在节点版本8.3或更高版本中受支持。

检查节点版本运行 node -v 在终端窗口。