我有一个示例grunt插件
/tasks sample.js config.file Gruntfile.js package.json
我想获取sample.js中config.file的路径.起初,我是这样做的
path.resolve('tasks/config.file')
在安装插件之前一切正常. config.file的路径更改为’〜/ some_project / node_modules / sample_plugin / tasks / config.file’,但path.resolve返回’〜/ some_project / tasks / config.file’.
我怎样才能获得config.file的正确路径?