1 回答
TA贡献1810条经验 获得超5个赞
正如我在问题的更新部分中提到的,解决方案是将所有与 babel 相关的包移动到devDependencies根 package.json 的部分。
但为什么这有帮助?
问题是我NODE_ENV在 Dockerfile 中设置为生产。如果设置为生产,npm将不会安装开发依赖项。NODE_ENV在主机上我没有这样的变量。此外@babel/polyfill,根据 babel docs ,另一个问题是:
因为这是一个 polyfill(它将在您的源代码之前运行),我们需要它是一个依赖项,而不是一个 devDependency
根据文档 @babel/polyfill也已弃用,因此更好的解决方案是:
添加"babel-loader": "8.0.6"到根 package.json
devDependencies在a-somethingpackage.json中有以下内容:
"devDependencies": {
"webpack": "3.5.6",
"core-js": "^3.4.7",
"regenerator-runtime": "^0.13.3"
}
将这两行放在最顶部的条目 Javascript 文件中:
import 'core-js/stable'
import 'regenerator-runtime/runtime'
最后使用这个 webpack 配置:
const path = require('path')
module.exports = {
target: 'node',
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'build')
},
module: {
rules: [
{
test: /\.js?$/,
use: {
loader: 'babel-loader',
options: {
rootMode: 'upward',
presets: [
['@babel/preset-env', {
corejs: 3,
useBuiltIns: 'usage'
}]
]
}
},
include: [
path.resolve(__dirname, 'src'),
/node_modules\/a-/,
/node_modules\/b-/
]
}
]
}
}
添加回答
举报