1

这真的让我很困惑。基本上我设置了一个使用 Grunt 的 Go 应用程序。

我已经为我的 buildpack 使用https://github.com/ddollar/heroku-buildpack-multi来组合 nodejs 和 go buildpack,但我无法让 nodejs buildpack 工作。

我设法安装了 grunt 并且在执行我的 grunt 任务时它只是无法获取模块。Heroku 的输出如下:

Fetching repository, done.
Counting objects: 14, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (10/10), 1.23 KiB | 0 bytes/s, done.
Total 10 (delta 6), reused 0 (delta 0)

-----> Fetching custom git buildpack... done
-----> Multipack app detected
=====> Downloading Buildpack: https://github.com/heroku/heroku-buildpack-nodejs.git
=====> Detected Framework: Node.js
-----> Requested node range:  0.10.x
-----> Resolved node version: 0.10.30
-----> Downloading and installing node
-----> Exporting config vars to environment
-----> Installing dependencies
               npm WARN optional dep failed, continuing fsevents@0.2.0

       > blat@0.0.0 postinstall /tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d
       > echo postinstall time ls react; ls ./node_modules/react; echo AAA; ./node_modules/grunt-cli/bin/grunt heroku:deploy

       postinstall time ls react

       README.md
       addons.js
       dist
       lib
       node_modules
       package.json
       react.js

       AAA

       Loading "Gruntfile.js" tasks...ERROR
       >> Error: Cannot find module 'React'
       Warning: Task "heroku:deploy" not found. Use --force to continue.

       Aborted due to warnings.

       npm ERR! blat@0.0.0 postinstall: `echo postinstall time ls react; ls ./node_modules/react; echo AAA; ./node_modules/grunt-cli/bin/grunt heroku:deploy`
       npm ERR! Exit status 3
       npm ERR!
       npm ERR! Failed at the blat@0.0.0 postinstall script.
       npm ERR! This is most likely a problem with the blat package,
       npm ERR! not with npm itself.
       npm ERR! Tell the author that this fails on your system:
       npm ERR!     echo postinstall time ls react; ls ./node_modules/react; echo AAA; ./node_modules/grunt-cli/bin/grunt heroku:deploy
       npm ERR! You can get their info via:
       npm ERR!     npm owner ls blat
       npm ERR! There is likely additional logging output above.
       npm ERR! System Linux 3.8.11-ec2
       npm ERR! command "/tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d/vendor/node/bin/node" "/tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d/vendor/node/bin/npm" "install" "--userconfig" "/tmp/build_7d4b99cb-602b-42ee-9
a85-8b929a54646d/.npmrc" "--production"
       npm ERR! cwd /tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d
       npm ERR! node -v v0.10.30
       npm ERR! npm -v 1.4.21
       npm ERR! code ELIFECYCLE
       npm ERR!
       npm ERR! Additional logging details can be found in:
       npm ERR!     /tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d/npm-debug.log
       npm ERR! not ok code 0

请注意,我故意打电话ls ./node_modules/react来查看它是否已安装。但由于某种原因,它无法在我的节点文件中找到它。

我的 Gruntfile:

module.exports = function(grunt) {
  grunt.loadNpmTasks('grunt-react')
  grunt.loadNpmTasks('grunt-browserify')

  // doing this for testing - fails on heroku
  var react= require('React')

  grunt.initConfig({
    browserify: {
      options: {
        transform: [require('grunt-react').browserify]
      },
      app: {
        src: 'src/app.react.js',
        dest: 'public/index.js'
      }
    },
  })

  grunt.registerTask('heroku:deploy', [
    'browserify:app'
  ])
}

和 package.json 文件:

{
  "name": "blat",
  "version": "0.0.0",
  "description": "",
  "engines": {
    "node": "0.10.x",
    "npm": "1.4.x"
  },
  "dependencies": {
    "director": "^1.2.3",
    "es6-promise": "^1.0.0",
    "grunt": "^0.4.5",
    "grunt-cli": "^0.1.13",
    "grunt-react": "^0.9.0",
    "react": "^0.11.1",
    "react-router": "^0.5.2",
    "superagent": "^0.18.2",
    "superagent-prefix": "0.0.2"
  },
  "devDependencies": {},
  "scripts": {
    "postinstall": "echo postinstall time; ./node_modules/grunt-cli/bin/grunt heroku:deploy"
  }
}

.buildpacks

https://github.com/heroku/heroku-buildpack-nodejs.git
https://github.com/kr/heroku-buildpack-go.git

Heroku 配置:

BUILDPACK_URL = https://github.com/ddollar/heroku-buildpack-multi.git
NODE_ENV = production

有谁知道问题是什么?我无法在本地复制它,这太令人沮丧了。我试过https://github.com/mbuchetics/heroku-buildpack-nodejs-grunt buildpack 但它给了我相同的结果..

4

1 回答 1

2

好的,事实证明这是区分大小写的问题。显然我使用的是 HFS+ 不区分大小写的格式,这解释了为什么我的代码在本地工作..

于 2014-08-13T23:58:38.917 回答