更新:似乎该错误与我的一个私人包裹有关
我正在为我的react应用使用私有模块,该模块是用heroku-create-react-app构建的。
这是我在项目根文件夹中的.npmrc
:
//registry.npmjs.org/:_authToken={NPM_TOKEN}
init.author.name=My.Name
scope=username
@username:registry=https://registry.npmjs.org/
和我的package.json
"dependencies": {
"@myname/my-component": "^0.1.9",
...
}
"scripts": {
"build-css": "node-sass-chokidar ./src/ -o ./src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
在heroku上,我将环境变量设置为
NPM_TOKEN
并将令牌设置为其值。
推到heroku时出现此错误:
remote: -----> Building dependencies
remote: Installing node modules (package.json + package-lock)
remote: npm ERR! code E404
remote: npm ERR! 404 Not Found: @myname/my-component@https://registry.npmjs.org/@my-name/my-component/-/my-component-0.1.9.tgz
remote:
答案 0 :(得分:1)
我没有看到名为heroku-create-react-app的GitHub存储库,但是如果使用create-react-app引导了它,则变量名必须以“ REACT_APP_”开头才能在可变过程中使用.env。这篇文章有更多信息:http://uidevdaily.com/2018/how-to-set-environment-specific-variables-in-a-react-app。