Grunt:抛出新的TypeError(路径.resolve的参数必须是字符串');

Grunt: throw new TypeError('Arguments to path.resolve must be strings');

本文关键字:字符串 参数 resolve TypeError 路径 Grunt      更新时间:2023-09-26

我试图重新安装grunt,但检查版本grunt得到一个错误:

$npm uninstall grunt-cli -g
$npm cache clean -g
$npm install grunt-cli -g
...
/usr/bin/grunt -> /usr/lib/node_modules/grunt-cli/bin/grunt
grunt-cli@0.1.9 /usr/lib/node_modules/grunt-cli
├── resolve@0.3.1
├── nopt@1.0.10 (abbrev@1.0.4)
└── findup-sync@0.1.2 (lodash@1.0.1, glob@3.1.21)

安装后出错:

$grunt --version
path.js:313
        throw new TypeError('Arguments to path.resolve must be strings');
              ^
TypeError: Arguments to path.resolve must be strings
    at Object.exports.resolve (path.js:313:15)
    at Object.<anonymous> (/usr/local/lib/node_modules/grunt/bin/grunt:13:16)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
    at startup (node.js:119:16)
    at node.js:901:3
$ which grunt
/usr/local/bin/grunt
$ node --version
v0.10.15

请告诉我可能出了什么问题

@jgillich谢谢你,你的链接很有用!

https://github.com/gruntjs/grunt/issues/726#issuecomment-19949327