this post所述,bower应该能够在1.3.1及更高版本中运行安装后脚本。我正在使用 bower 1.3.12。

这是我的bowerrc文件:

{
    "scripts": {
        "postinstall": "./node_modules/grunt-cli/bin/grunt"
    }
}

但是,当我使用bower安装软件包时,该钩子(Hook)无法执行。我究竟做错了什么?

最佳答案

我和你有同样的问题。
我已通过在.bowerrc文件中添加变量cwd来解决此问题:

{
  "cwd": "./",
   "scripts": {
        "postinstall": "grunt wiredep"
   }
 }

10-04 22:49