【发布时间】:2019-03-13 10:52:41
【问题描述】:
在 GAE 的标准环境中,package.json 中的 devDevependencies 是ignored。但是Flexible environment 没有这样的限制。但是,我在尝试将我的应用程序部署到 GAE 时收到未找到包裹的错误。 这是我的 app.yaml:
runtime: nodejs
env: flex
还有我的 package.json:
{
"main": "index.js",
"scripts": {
"dev": "nodemon -w ./server bin/runServer -e js,json",
"build:client": "parcel build client/index.html",
"start": "npm run build:client && cross-env NODE_ENV=production node ./bin/runServer"
},
"dependencies": {
"@material-ui/core": "^3.1.2",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"express": "^4.16.3",
"lodash": "^4.17.11",
"material-ui": "^0.20.2",
"morgan": "^1.9.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-loadable": "^5.5.0",
"react-multi-lang": "^1.0.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"cross-env": "^5.2.0",
"nodemon": "^1.18.4",
"parcel": "^1.10.1",
"parcel-bundler": "^1.10.1"
}
}
【问题讨论】:
标签: node.js google-app-engine app-engine-flexible