繁体   English   中英

部署到Heroku时在grunt上找不到模块

[英]Cannot find module on grunt when deploying to Heroku

这真的让我感到困惑。 基本上,我设置了一个将Grunt用于Web应用程序的Go应用程序。

我已经将https://github.com/ddollar/heroku-buildpack-multi用于我的buildpack来组合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,但是它给了我相同的结果。

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM