- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
7 升级。我使用 npx babel-upgrade --write 来协助更新 package.json 然后运行npm 安装。 当尝试运行我们的 webpack-6ren">
我正在尝试从 Babel 6 -> 7 升级。我使用 npx babel-upgrade --write
来协助更新 package.json
然后运行npm 安装
。
当尝试运行我们的 webpack 开发服务器时,编译失败并出现以下错误:
ERROR in ./src/app/index.js
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: Cannot find module 'babel-plugin-transform-object-rest-spread' from '/vagrant'
at Function.module.exports [as sync] (/vagrant/node_modules/resolve/lib/sync.js:58:15)
at resolveStandardizedName (/vagrant/node_modules/@babel/core/lib/config/files/plugins.js:101:31)
at resolvePlugin (/vagrant/node_modules/@babel/core/lib/config/files/plugins.js:54:10)
at loadPlugin (/vagrant/node_modules/@babel/core/lib/config/files/plugins.js:62:20)
at createDescriptor (/vagrant/node_modules/@babel/core/lib/config/config-descriptors.js:154:9)
at items.map (/vagrant/node_modules/@babel/core/lib/config/config-descriptors.js:109:50)
at Array.map (<anonymous>)
at createDescriptors (/vagrant/node_modules/@babel/core/lib/config/config-descriptors.js:109:29)
at createPluginDescriptors (/vagrant/node_modules/@babel/core/lib/config/config-descriptors.js:105:10)
at alias (/vagrant/node_modules/@babel/core/lib/config/config-descriptors.js:63:49)
注意 /vagrant
是项目根。
babel-plugin-transform-object-rest-spread
的唯一引用存在于 node_modules
中,所以我猜这些以某种方式触发了它?
package.json
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-transform": "^3.0.0",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-fetch-mock": "^1.6.5",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.6.0",
"path": "^0.12.7",
"postcss": "^7.0.1",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.1.6",
"postcss-modules-values": "^1.3.0",
"raw-loader": "^0.5.1",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.5.3",
"sinon": "^6.1.4",
"standard": "^11.0.0",
"style-loader": "^0.21.0",
"svg-react-loader": "^0.4.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.1.3",
"webpack-visualizer-plugin": "^0.1.11"
},
.babelrc
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
}
编辑:我无法确定问题的原因并已恢复到 Babel 6。
最佳答案
有这个问题,经过一些挖掘后能够解决它 --
我们的 webpack 配置和 package.json
中的插件中仍然有一个 transform-object-rest-spread
,没有 babel 前缀。将它替换为 @babel/plugin-proposal-object-rest-spread
为我们修复了它!
关于node.js - 巴别塔错误 : "Error: Cannot find module ' babel-plugin-transform-object-rest-spread' from '/vagrant' ",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56053090/
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我正在尝试使用 babel 转译器在项目中使用 ES6,但我正在努力解决一些非常不寻常的事情:我正在使用包含导入和导出指令的增强型 ES5 js 代码库。 这是一个例子: import Widget
如果我编写以下代码并通过 Babel (6.5.0) 转译它,它会正常工作。 function foo (first: string, second: number) { // code he
我在使用这个脚本构建时遇到了这个错误: webpack --colors --progress --watch --config --jsx-loader webpack.config.js 这是我的
假设我有以下代码,我想使用自定义 Babel 插件进行转换: let c; c = document; console.log(c.readyState); 目标是替换所有出现的 document.r
我正在做一个关于前端大师的 react 类(class),我们不得不修改 babel 配置以允许类组件中的状态实例化,例如:state = {index: 0},但是在运行时命令: npm insta
我目前正在尝试为我的 JavaScript 组件实现简单的测试,但在我的测试中收到错误:TypeError: undefined is not a function。 我的类(class)中的这一行出
当我尝试运行使用 babel 6 的服务器时,出现以下错误: 错误:/path/to/myapp/server.js:t.Identifier:传递的参数过多。收到3个但最多只能收到1个 这是我的 p
我的 Chrome 扩展项目使用来自 https://github.com/tfoxy/chrome-promise/blob/master/chrome-promise.js 的 Chrome-Pr
我在工作时正在处理一个 JS 文件,我安装了 babel,运行 babel file.js |节点晚上把文件发回家上类,在家安装了babel,运行上面的命令出现如下错误: The CLI has be
我正在尝试动态替换“导入”语句。 这是一个检查导入是否以加号结尾的示例。 module.exports = function(babel) { return { visitor
我有一个正在运行的 webpack-dev-server 可以编译和提供一些 Babel/React 代码。我已经尽可能让它通过 localhost:3001 为编译后的 client.js 提供服务
我正在尝试运行测试,但收到此错误: /dev/tests/counters.spec.js:12 describe('Work damn you!', function () { ^ Referenc
我正在尝试使用 babel 来运行我的 NodeJS 程序,其中包括 ES6 语法和从 Colyseus 库导出的内容。但是,当我运行命令时: babel-node server.js 出现以下错误信
我的 gruntfile.js 中有这个简单的代码: module.exports = function (grunt) { require("load-grunt-tasks")(grunt);
通过gulp-babel为服务器进行转换,并通过browserify为客户端使用babelify进行转换 - 在我的代码中使用async和await。这些功能似乎转变得很好,但是......错误:找不
我正在尝试创建一个基于另一个名为“sidebar-v2”(https://github.com/Turbo87/sidebar-v2)的简单 npm 包 出于这个原因,我尝试将 JS 代码更新为 ES
我正在正确导入一个 Node 模块,但遇到一个问题,我正在导入的 Node 模块是用 es6 编写的,而 babel 无法转换它。 在基类头中: import foo from 'bar/lib/fo
设置 通天塔 6 (^6.0.0), Node 5.4.0,Express 4.13.x, babel-node 和 babel-register 都有警告,禁止在生产环境中使用babel.io 网站
Note: I found this question on Babel issue tracker (https://phabricator.babeljs.io/T2653) and it was
我是一名优秀的程序员,十分优秀!