- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在为我的项目使用 React,并且我正在从 webpack2 迁移到 webpack3。更新 babel 和所有依赖项后,我执行了 npm run build
导致错误:Module build failed: SyntaxError: Missing class properties transform.
错误示例:
11 |
12 | class Login extends Component {
> 13 | state = {
| ^
14 | email: "",
15 | password: ""
16 | }
另一个例子:
11 | class Navigation extends React.Component {
12 |
> 13 | state = {
| ^
14 | loadingTotal: false,
15 | }
有人知道问题出在哪里吗?我尝试用谷歌搜索错误,但到目前为止我没有找到任何解决方案......
.babelrc
{
"presets": ["env", "stage-2", "react"],
"plugins": [
"react-hot-loader/babel",
"transform-class-properties"
]
}
webpack.config
const webpack = require('webpack');
const WriteFilePlugin = require('write-file-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
const path = require('path');
const config = {
entry: {
'vendor': './dist/vendor',
'app': [
'react-hot-loader/patch',
'./app/index'
]
},
output: {
path: process.env.WEBPACK_ENV === 'production' ? path.join(__dirname, '/../../../../public_html/') : path.join(__dirname, '/public'),
filename: '[name].js',
publicPath: '/'
},
resolve: {
extensions: ['.ts', '.js', '.json']
},
module: {
rules: [
// { enforce: 'pre', test: /\.js$/, exclude: /node_modules/, loader: 'eslint-loader' }
{
test: /\.(js|jsx)?$/,
exclude: /node_modules/,
options: {
presets: ['env']
},
loader: 'babel-loader'
},
{test: /\.json$/, loader: 'json-loader'},
{test: /\.html/, loader: 'html-loader'},
{test: /\.styl$/, loader: 'style-loader!css-loader!stylus-loader'},
{test: /\.css$/, loader: 'style-loader!css-loader'},
{test: /\.(gif|png|jpe?g)$/i, loader: 'file-loader?name=images/[name].[ext]'},
{
test: /\.woff2?$/,
loader: 'url-loader?name=fonts/[name].[ext]&limit=10000&mimetype=application/font-woff'
},
{test: /\.(ttf|eot|svg)$/, loader: 'file-loader?name=fonts/[name].[ext]'}
]
}
};
console.log(process.env.WEBPACK_ENV);
config.devtool = process.env.WEBPACK_ENV === 'production' ? 'source-map' : 'eval-source-map';
config.plugins = [
new webpack.ProvidePlugin({
'$': "jquery",
'jQuery': "jquery",
'window.jQuery': "jquery",
'window.$': 'jquery'
}),
new webpack.DefinePlugin({
'WEBPACK_ENV': process.env.WEBPACK_ENV === 'production' ? '"production"' : '"dev"'
}),
new ExtractTextPlugin("styles.css"),
process.env.WEBPACK_ENV === 'production' ? new UglifyJSPlugin() : WriteFilePlugin()
]
module.exports = config;
构建命令:
"NODE_ENV=production BABEL_ENV=production WEBPACK_ENV=production ./node_modules/.bin/webpack --config webpack.config.js",
最佳答案
你是不是忘了install it ?
npm install --save-dev babel-plugin-transform-class-properties
顺便说一句,如果你使用 .babelrc
,你不需要在 webpack 中配置 babel-loader 选项。
所以你可以删除它:
options: {
presets: ['env']
},
关于javascript - 模块构建失败 : SyntaxError: Missing class properties transform when using webpack2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47811833/
我有一段这样的代码。我发现 myResults = writer.getBuffer().toString(); 对某些用例返回 EMPTY STRING,但对其他用例则不返回。 我查看了服务器,但在
如何使用 javascript 通过 id 更改元素中的 -webkit-transform 、-moz-transform 、-o-transform 和 -ms-transform css? 这段
我正在使用 javax.xml.transform.Transformer.transform() 通过 xsl 样式表将一个 xml 转换为另一个 xml。我想以编程方式设置第一级 child 的排
为了使 seaborn.pairplot() 正常工作,在 jupyter notebook 中执行了以下步骤。 /usr/local/lib/python2.7/site-packages/matp
假设这个输入 XML 编写这些代码行: StreamSource source = new StreamSource(new StringReader(/* the above XML*/));
如何在 spring 框架中配置 java.xml.transform.Transformer ?我需要转换器的实例来通过 xslt 将 xml 转换为文本。因此,配置的转换器应该了解 xslt 样式
我一直在核心数据中使用可转换属性,将图像和颜色等复杂对象转换为原始数据。我拿了this ... The idea behind transformable attributes is that you
我正在尝试打开 XML 文件,添加一些更改,然后保存到其他 XML 文件结果。我正在使用标准 javax.xml.parsers.* 和 javax.xml.transform* 类。 但在保存的文档
Transformer(变换方法)对输入源的大小有限制吗? 我正在尝试转换一个相当长的 (18M) XML,但收到一个奇怪的错误 "The element type "HR" must be term
我正在尝试解析一个非常简单的示例: 100 我使用的样式表如下: 这在 libxs
来自文档 for from_pretrained ,我知道我不必每次都下载预训练的向量,我可以使用以下语法保存它们并从磁盘加载: - a path to a `directory` contain
默认缓存目录磁盘容量不足,我需要更改默认缓存目录的配置。 最佳答案 您可以在每次加载模型时指定缓存目录 .from_pretrained通过设置参数cache_dir .您可以通过导出环境变量 TRA
有一个函数,例如: CATransform3DGetAffineTransform Returns the affine transform represented by 't'. If 't' ca
我有一个包含 WCF 设置的配置文件: “add”元素只有一个 baseAddress 属性,所以我不能使用 Match 定位器。一种方法如何像我的示例中那样转换多个元素? 最
在收到下面链接中描述的错误后,我已将实体属性的 Transfomer 设置为 NSSecureUnarchiveFromData(之前为 nil)。 CoreData crash error Xcod
当我写Document时使用 Transformer 的 transform() 方法转换为 XML,生成的 XML 文档的格式很好 - 所有元素都写在单独的行上并缩进。除了第一个元素与定义写在同一行
我不明白 StreamResult 实例会发生什么。我看到 Transformer 对象接收 source 和 streamResult: transformer.transform(sour
从下面的代码片段我应该得出结论,std::transform 比 boost::transform 更受欢迎,因为前者使用更少的初始化和析构函数可能更有效比后者? #include #include
transform() 可以将函数应用到序列的元素上,并将这个函数返回的值保存到另一个序列中,它返回的迭代器指向输出序列所保存的最后一个元素的下一个位置。 这个算法有一个版本和 for_each()
我是 react-native 的新手。在项目上将 react-native 从 0.48.3 升级到 0.62.2 后,运行“react-native run-ios”命令时出现错误:“index.
我是一名优秀的程序员,十分优秀!