- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个根据本教程设置的 monorepo:tutorial .
该项目由一个包含三个包的主文件夹 (series4) 组成,这三个包专注于 web、移动应用程序和通用代码 - 它们分别命名为 web、app 和 common 文件夹。
总结...这些文件夹是:
/series4/packages/web
/series4/packages/common
/series4/packages/app
我正在尝试使用 Modal 模块,但出现此错误:
SyntaxError: series4/node_modules/react-native-modal/src/index.js: Support for the experimental syntax 'classProperties' isn't currently enabled (25:20)
我已阅读此处的文档:Babel .
但是我无法解决这个错误。
“series4”目录中的 package.json 是:
{
"name": "@wow/common",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "16.8.2",
"react-native": "0.59.0-rc.1",
"react-native-elements": "^1.1.0",
"react-native-image-slider-box": "^1.0.5",
"react-native-snap-carousel": "^3.8.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@types/react-native": "0.57.36",
"rimraf": "^2.6.3",
"typescript": "3.3.3"
}
}
babel.config.js 文件(在 series4 目录中)是:
module.exports = {
presets: [
"@babel/preset-env",
"@babel/preset-react"
],
plugins: [
'@babel/proposal-class-properties',
'@babel/plugin-proposal-class-properties'
],
babelrcRoots: [
".",
"packages/*",
],
};
我在 web 和 common 文件夹中配置了以下 babelrc。
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties"
]
]
}
common文件夹下的package.json是:
{
"name": "@wow/common",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "16.8.2",
"react-native": "0.59.0-rc.1",
"react-native-elements": "^1.1.0",
"react-native-image-slider-box": "^1.0.5",
"react-native-snap-carousel": "^3.8.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@types/react-native": "0.57.36",
"rimraf": "^2.6.3",
"typescript": "3.3.3"
}
}
web 文件夹中的 package.json 是:
{
"name": "react-native-web-workout-series",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/jest": "24.0.5",
"@types/node": "11.9.4",
"@types/react": "16.8.3",
"@types/react-dom": "16.8.1",
"@wow/common": "1.0.0",
"react": "^16.8.2",
"react-art": "16.8.2",
"react-dom": "^16.8.2",
"react-native": "0.55.4",
"react-native-modal": "^11.3.1",
"react-native-web": "0.10.0",
"react-scripts": "2.1.5",
"typescript": "3.3.3"
},
"scripts": {
"start": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@types/react-native": "0.55.4",
"babel-plugin-module-resolver": "^3.2.0",
"cross-env": "^5.2.0"
}
}
运行时出现错误
yarn start
web 文件夹中的命令(当我在没有 Modal 模块的情况下执行命令时,该命令完美运行)。
我错过了什么?
最佳答案
这可能是由
react-native-modal
引起的不转译类属性语法。而且,默认情况下,不会转译 node_modules。当 js 引擎读取类属性语法时,它会失败。
你需要babel.config.js
影响 node_modules
module.exports = function (api) {
api.cache(true);
return {
babelrcRoots: [
'.',
'./modules/*'
],
ignore: [/node_modules/(?!react-native-modal)/],
presets: ["@babel/preset-env"]
};
}
'classProperties' isn't currently enabled
也意味着 JS 引擎通过一些配置支持类属性语法,也许有办法让引擎接受这种语法
<罢工>见this
在 create-react-app
中为 babel 自定义配置, 你需要先eject
然后直接进行配置。
运行 npm run eject
, 转到 config/webpack.config.js
, 查找并替换 babel-loader
与 test: /\.(js|mjs|jsx|ts|tsx)$/
.
...
{
test: /\.(js|mjs|jsx|ts|tsx)$/,
include: [paths.appSrc, paths.appNodeModules],
exclude: /node_modules\/(?!react-native-modal|react-native-animatable)/,
loader: require.resolve('babel-loader'),
options: {
customize: require.resolve(
'babel-preset-react-app/webpack-overrides'
),
presets: [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript",
],
plugins: [
[
require.resolve('babel-plugin-named-asset-import'),
{
loaderMap: {
svg: {
ReactComponent:
'@svgr/webpack?-svgo,+titleProp,+ref![path]',
},
},
},
],
['@babel/plugin-proposal-class-properties', { loose: true }],
],
// This is a feature of `babel-loader` for webpack (not Babel itself).
// It enables caching results in ./node_modules/.cache/babel-loader/
// directory for faster rebuilds.
cacheDirectory: true,
cacheCompression: isEnvProduction,
compact: isEnvProduction,
},
},
...
我说的部分正确,babel 没有转译 react-native-modal
.而且,为什么要创建一个 babel.cofig.js
不工作是,create-react-app
使用存在于另一个宇宙中的配置 ( see this SO )。
起初我注意到您的 babel.config.js
中存在语法错误但是构建项目并没有提示任何事情。所以我怀疑它没有被使用并遇到上面的 SO 帖子。
它现在可以成功编译,但会抛出一些运行时错误,因为一些包是为移动应用程序和 expo
构建的.
超出范围
一个值得注意的是 react-native-modal
.
// react-native-modal
import { DeviceEventEmitter } from 'react-native';
然而,在react-native
,
module.exports = {
get DeviceEventEmitter() { ... }
};
// which is approximately
export default {
DeviceEventEmitter,
}
babel 认为使用命名导入作为对象解构是错误的。您可以通过以下方式解决此问题
presets: [
["@babel/preset-env", { module: 'commonjs' }],
"@babel/preset-react",
"@babel/preset-typescript",
],
然而,DeviceEventEmitter
将是 undefined
然后。其他导出工作正常。
关于javascript - 尝试在 monorepo 项目中配置 Babel - 当前未启用 'classProperties'。如何在 monorepo 项目中设置 Babel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57826473/
当我在 Django 项目中设置 React 时,我遇到了这个错误 模块构建错误 模块构建失败(来自 ./node_modules/babel-loader/lib/index.js): 语法错误:C
我正在努力使我更漂亮的作品正常工作。当我启动时 format-check ( prettier --check 在 js、ts 文件上)它给了我 SyntaxError: This experimen
当我尝试运行 react js 时出现此错误当前未启用对实验性语法“classProperties”的支持申请。 我正在尝试增加 中的值当我点击一个` 这是关于我的工作的代码片段... impor
我最近在代码中遇到了一个有趣的错误,尽管我设法找到了修复程序,但我想知道是否有人可以解释该解决方案为何有效。这是一些代码 var Project = Backbone.Model.extend({
使用 react-native init MyApp 初始化应用程序时出现以下语法错误 SyntaxError: /Users/MyAccount/RNProjects/app/node_mo
Support for the experimental syntax 'classProperties' isn't currently enabled 我尝试了重新构建后仍然出现错误的解决方案。
我从这个例子中为 Web、Android 和 iOS 构建了一个跨平台的 monorepo 应用程序 https://github.com/brunolemos/react-native-web-mo
我一直收到这个 Support for the experimental syntax 'classProperties' isn't currently enabled 当我为我的 react 应用
好吧,我在尝试在我的 React-native 应用程序上启用 Jest 时遇到了很大的问题。本主题的每个答案都为我的 webpack 或 package.json 提供了不同的配置。我希望能在这里找
我对 React.js 非常陌生。我安装了 Laravel 5.7 并通过运行以下命令将 Vue.js 脚手架替换为 React: php artisan preset react 现在的问题是,我无
我有一个根据本教程设置的 monorepo:tutorial . 该项目由一个包含三个包的主文件夹 (series4) 组成,这三个包专注于 web、移动应用程序和通用代码 - 它们分别命名为 web
我是一名优秀的程序员,十分优秀!