- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在使用Google Cloud App Engine,直到最近,一切都运转良好。
我有一个使用Webpack捆绑在一起的React Application。每当我在本地计算机上运行生产Webpack文件时,它都可以正常工作,但是只要我在Google Cloud App Engine上运行它,它就会卡在这里clean-webpack-plugin: /home/luis/projectname/dist has been removed.
以前效果很好,唯一改变的是我添加了一个自定义域,并通过ssl加密。当前有两个实例通过GAE运行该站点的先前版本(我需要对其进行更新)
我尝试创建一个新项目,并从头开始重复该过程,问题仍然存在。
编辑:
这是package.json
{
"name": "roto-hive",
"version": "0.5.0",
"engines": {
"node": "8.11.3"
},
"description": "RotoHive Web Application",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"fantasydata-node-client": "^1.1.0",
"firebase": "^5.0.4",
"firebase-admin": "^5.12.1",
"fs-extra": "^6.0.1",
"mini-css-extract-plugin": "^0.4.1",
"mobx": "^5.0.2",
"mobx-react": "^5.2.3",
"moment": "^2.22.2",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"react": "^16.4.1",
"react-beautiful-dnd": "^7.1.3",
"react-circular-progressbar": "^0.8.0",
"react-cookie-consent": "^1.7.0",
"react-dom": "^16.4.1",
"react-firebaseui": "^3.0.4",
"react-fontawesome": "^1.6.1",
"react-image": "^1.3.1",
"react-js-pagination": "^3.0.2",
"react-recaptcha": "^2.3.8",
"react-responsive-modal": "^3.0.3",
"react-router-dom": "^4.3.1",
"react-select": "^1.2.1",
"react-spinkit": "^3.0.0",
"react-toastify": "^4.1.0",
"rimraf": "^2.6.2",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.11",
"ganache-cli": "^6.1.3",
"html-webpack-plugin": "^3.2.0",
"jshint": "^2.9.6",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"prettier-eslint": "^8.8.1",
"purecss": "^1.0.0",
"react-particles-js": "^2.2.0",
"react-test-renderer": "^16.4.1",
"style-loader": "^0.21.0",
"webpack": "^4.14.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "node ./dist/server.js",
"clean": "rm -rf dist node_modules build",
"watch": "webpack --watch --config webpack.dev.js",
"test": "mocha",
"start:dev": "npm run build && nodemon ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://LDLugo@bitbucket.org/LDLugo/rotohive.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/LDLugo/rotohive#readme"
}
这是webpack.prod.js
`
const path = require('path')
const nodeExternals = require('webpack-node-externals')
const HtmlWebPackPlugin = require('html-webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
const modeObj = 'production'
const moduleObj = {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: 'babel-loader'
},
{
test: /\.js$/,
exclude: /node_modules/,
use: ['babel-loader', 'eslint-loader']
},
{
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' }
]
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [
'file-loader'
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
'file-loader'
]
}
]
}
const client = {
entry: {
'client': './src/client/index.js'
},
mode: modeObj,
target: 'web',
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist/public')
},
devtool: 'source-map',
module: moduleObj,
plugins: [
new HtmlWebPackPlugin({
template: 'public/index.html',
favicon: 'public/favicon.ico'
}),
new CleanWebpackPlugin(['dist']),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css'
})
],
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true
}),
new OptimizeCSSAssetsPlugin({})
]
}
}
const server = {
entry: {
'server': './src/server/index.js'
},
mode: modeObj,
target: 'node',
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist')
},
optimization: {
splitChunks: {
chunks: 'all'
}
},
module: moduleObj,
externals: [nodeExternals()]
}
module.exports = [client, server]
最佳答案
虽然我无法解决该问题(我设法暂时解决了它,但它总是回来了)。我确实找到了解决方法。
因此,我要做的是在本地计算机上下载google sdk,然后将其连接到我的google cloud帐户(我在其中创建项目的帐户)。然后从我的本地计算机部署它。
因此,我能够使用npm run build
进行构建,然后使用gcloud app deploy
来部署捆绑的代码。
关于node.js - Webpack“npm run build”不适用于Google Cloud,但适用于本地计算机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51772750/
我正在使用npm v5.3.0。 现在,我想将npm更新到v5.4.1。要执行此操作,请在终端中键入以下内容: npm install -g npm 没有任何错误。但是,当我键入npm -v时,得到的
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
有什么方法可以更改或重置全局 npm 注册表。 感谢您的帮助。 最佳答案 在终端中运行以下命令以恢复到默认注册表 npm config set registry https://registry.np
查看 npm 的 documentation , 'i' 是 'install' 的别名,是否有任何情况下最好使用完整的 'npm install'? 最佳答案 两者之间没有具体区别。这只是一个懒惰的
目前,每次将更改推送到 GIT 存储库时,我都会发布新版本的 NPM 包。我的大部分更改只是愚蠢的补丁。我使用 NPM 作为工具,在我的许多项目中启用版本控制和代码重用。经过一个月的工作,我已经完成了
我运行的时候总是报错 npm install 谁知道怎么解决 npm ERR! Darwin 13.0.0 npm ERR! argv "/usr/local/bin/node" "/usr/b
“npm uninstall packageName”删除包并更新 package.json 文件。 但是来自 npm 文档 - To remove a package from the depend
我的背景更熟悉 composer .我收到 gulp (等)进行构建过程和学习 node以及如何使用 npm我走的时候。 很奇怪(再次来自 composer 背景)composer.lock默认情况下
我看到的许多 npm 模块名称前面都添加了技术名称,例如 react-native 或 jquery 等。由于我们已经在 package.json 文件中提供了关键字,因此遵循此约定有什么好处。我问这
我检查了 connect-privkey-to-provider模块在依赖项中。但是,它一直在说 模块 'connect-privkey-to-provider' 是无关的 npm 和 找不到模块 '
我正在进行持续集成并发现了 npm ci命令。 我不知道在我的工作流程中使用此命令有什么优势。 速度更快吗?这会让测试变得更难吗?好吗? 最佳答案 来自the official documentati
我有一个要发布到 NPM 的包,其中还包含如下所示的演示目录: . +-- demo | +-- src | | +-- main.js | +-- package.json +--
如果我打开集成终端并运行 npm -v 它会起作用。 但是,如果我直接从 NPM SCRIPTS 运行它,它就不起作用。 评论中要求的更多详细信息 //由 Fogmeister 编辑 我也有这个问题,
我正在尝试安装 gulp,当我写 npm install 时我得到了这个问题: npm ERR! code 1 npm ERR! path D:\www\wegrow\node_modules\nod
这个问题已经有答案了: npm test --codecoverage doesn't generate report (3 个回答) 已关闭 4 年前。 当我执行npm test --code-co
我能够运行 npm start 和 npm run start 命令。我用过create-react-app创建我的应用程序。为了在 CSS 模块中进行配置更改,我想运行 npmject 但它会抛出错
我正在使用npm run script执行“构建”和“测试”等任务。 例如,我的 package.json 如下所示: { "name": "fulfillment-service", "ve
我第一次将 npm 模块添加到我的项目中(jshint、optimg、jpgo)。我注意到有些项目,当我做 npm 运行 [名称] ,给出“sh: [name]: command not found”
我已经在 Windows 上安装了 Ubuntu Bash。我已经有 nodejs和 npm在我的 Windows 机器上 C:\Program Files\nodejs .在 Windows 的 b
我正在尝试运行 npm install bitgo命令但在终端上出现以下错误, npm ERR! code EMFILE npm ERR! syscall spawn git npm ERR! pat
我是一名优秀的程序员,十分优秀!