2017-09-26 4 views
0

Dies ist der Fehler, den ich habe. Es sagt, führen Sie die npm Bugs reminderpro. Ich habe das gemacht, aber nichts funktioniert. Mein Code hat sfcookies von npm. Als ich früher entfaltete, sagten sie, dass sfcookies nicht heruntergeladen haben .... so etwas. Also habe ich versucht, sfcookies auf package.json unter Abhängigkeiten zu schreiben, aber das hat auch nicht funktioniert. Jetzt gibt es einen speziellen Weg, diese auf Heroku zu setzen, vermisse ich etwas. (I verwenden create reagieren-App für die Erstinstallation)Ich habe versucht, die Reaktion App in Heroku, aber es ist fehlgeschlagen

remote: npm ERR! Linux 3.13.0-128-generic 
    remote: npm ERR! argv "/tmp/build_d018c5494b246e95e5185c9297b315ce/.heroku/node/                                 bin/node" "/tmp/build_d018c5494b246e95e5185c9297b315ce/.heroku/node/bin/npm" "ru                                 n" "build" 
    remote: npm ERR! node v6.11.3 
    remote: npm ERR! npm v3.10.10 
    remote: npm ERR! code ELIFECYCLE 
    remote: npm ERR! [email protected] build: `react-scripts build` 
    remote: npm ERR! Exit status 1 
    remote: npm ERR! 
    remote: npm ERR! Failed at the [email protected] build script 'react-scripts bui                                 ld'. 
    remote: npm ERR! Make sure you have the latest version of node.js and npm instal                                 led. 
    remote: npm ERR! If you do, this is most likely a problem with the reminderpro p                                 ackage, 
    remote: npm ERR! not with npm itself. 
    remote: npm ERR! Tell the author that this fails on your system: 
    remote: npm ERR!  react-scripts build 
    remote: npm ERR! You can get information on how to open an issue for this projec                                 t with: 
    remote: npm ERR!  npm bugs reminderpro 
    remote: npm ERR! Or if that isn't available, you can get their info via: 
    remote: npm ERR!  npm owner ls reminderpro 
    remote: npm ERR! There is likely additional logging output above. 
    remote: 
    remote: npm ERR! Please include the following file with any support request: 
    remote: npm ERR!  /tmp/build_d018c5494b246e95e5185c9297b315ce/npm-debug.log 
    remote: !  Push rejected, failed to compile React.js (create-react-app) mult                                 i app. 
    remote: 
    remote: !  Push failed 
    remote: Verifying deploy... 
    remote: 
    remote: !  Push rejected to sheltered-plateau-76958. 

Das ist mein package.json ist:

{ 
    "name": "reminderpro", 
    "version": "0.1.0", 
    "private": true, 
    "dependencies": { 
    "moment": "^2.18.1", 
    "react": "^15.6.1", 
    "react-dom": "^15.6.1", 
    "react-redux": "^5.0.6", 
    "react-scripts": "1.0.13", 
    "redux": "^3.7.2" 
    }, 
    "scripts": { 
    "start": "react-scripts start", 
    "build": "react-scripts build", 
    "test": "react-scripts test --env=jsdom", 
    "eject": "react-scripts eject" 
    } 
} 

Antwort

0

Ist der Build-Skript vor der Installation aufgerufen wird?

Sie sollten den Code für Ihre package.json zeigen, da ich die Reihenfolge, in der Heroku Ihre Skripte aufruft, besser verstehen kann.

+0

Okay, ich habe package.json hinzugefügt. Entschuldigung, ich habe den Installationsteil nicht bekommen? – Ash

+0

Versuchen Sie, alle Ihre Pakete von devDependencies in Ihre Abhängigkeiten zu verschieben. – MisterSnow

+0

ahhhh Ich sehe Dev dependencies dort nicht? – Ash

Verwandte Themen