- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 React 和 Flux 架构开始,使用 egghead.io tutorial但我在使用 babel 时遇到了一些麻烦。
尝试使用 webpack-dev-server
运行我的应用程序时遇到错误。以下是错误:
ERROR in The node API for `babel` has been moved to `babel-core`.
@ (webpack)-dev-server/client?http://localhost:3002 1:10-24
ERROR in The node API for `babel` has been moved to `babel-core`.
@ (webpack)-dev-server/client?http://localhost:3002 3:16-37
ERROR in The node API for `babel` has been moved to `babel-core`.
@ (webpack)-dev-server/client?http://localhost:3002 2:13-37
ERROR in (webpack)/~/process/browser.js
Module build failed: Error: Couldn't find preset "es2015" relative to directory "/usr/local/lib/node_modules/webpack/node_modules/process"
at /var/www/public/flux/node_modules/babel-core/lib/transformation/file/options/option-manager.js:372:17
at Array.map (native)
at OptionManager.resolvePresets (/var/www/public/flux/node_modules/babel-core/lib/transformation/file/options/option-manager.js:364:20)
at OptionManager.mergePresets (/var/www/public/flux/node_modules/babel-core/lib/transformation/file/options/option-manager.js:348:10)
at OptionManager.mergeOptions (/var/www/public/flux/node_modules/babel-core/lib/transformation/file/options/option-manager.js:307:14)
at OptionManager.init (/var/www/public/flux/node_modules/babel-core/lib/transformation/file/options/option-manager.js:465:10)
at File.initOptions (/var/www/public/flux/node_modules/babel-core/lib/transformation/file/index.js:194:75)
at new File (/var/www/public/flux/node_modules/babel-core/lib/transformation/file/index.js:123:22)
at Pipeline.transform (/var/www/public/flux/node_modules/babel-core/lib/transformation/pipeline.js:45:16)
at transpile (/var/www/public/flux/node_modules/babel-loader/index.js:14:22)
@ ./~/react/lib/ReactDOM.js 1:0-78
另外,这是我的 webpack 配置文件:
module.exports = {
entry: "./src/js/main.js",
output: {
path: "./dist",
filename: "bundle.js",
publicPath: "/"
},
devServer: {
inline: true,
port: 3002,
contentBase: "./dist"
},
module: {
loaders: [
{
test: /\.jsx?$/,
exlude: /(node_modules|bower_components)/,
loader: "babel",
query: {
presets: ["es2015", "react"]
}
}
]
}
};
还有我的包含所有依赖项的 package.json
文件:
{
"name": "flux-jenezis",
"version": "1.0.0",
"description": "Flux realisatoin usign egghead guide",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server"
},
"keywords": [
"flux",
"react"
],
"author": "jenezis",
"license": "ISC",
"dependencies": {
"flux": "^2.1.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-router": "^2.4.0"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0"
}
}
有人看到或解决了这个问题吗?
PS:节点版本:5.0.0,NPM版本:3.7.5
UPD:使用 npm --no-bin-links
标志安装的所有软件包和依赖项,因为 Windows 共享文件夹...
最佳答案
exlude: /(node_modules|bower_components)/,
应该是
exclude: /(node_modules|bower_components)/,
关于webpack - 找不到相对于目录的预设 "es2015",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36986133/
我想我读过一些可以在 cocoa 应用程序中包含 NSUserDefaults 文件的地方。我似乎无法找到如何做到这一点。 我知道我可以在第一次应用程序启动时创建,但我还不想这样做...... 最佳答
所以我有一个 HTML 表单,用户可以在其中通过选中三个预设答案之一或编写自己的自定义答案来回答单选题。 虽然这显然是一个多对多关系,但我仍然找不到合适的方法来设计数据库表以处理这两种类型(TEXT
这个问题在这里已经有了答案: Unexpected token '=' in React Component [duplicate] (2 个答案) 关闭 4 年前。 我在使用 Webpack 构建
我正在创建一个自定义相机 View ,并尝试查看是否有办法为输入和输出设置不同的 session 预设。我希望能够向用户展示高分辨率,但以低分辨率捕获 var captureSession: AVCa
我当前的设置如下(基于 Brad Larson 的 ColorTrackingCamera 项目): 我正在使用设置为 AVCaptureSessionPreset640x480 的 AVCaptur
我正在开发一个 React-Native 应用程序,它是使用 Expo 安装的,使用以下代码创建 .babelrc 配置: { "presets": ["babel-preset-expo"]
在一个工作 Jest + puppeteer 操作项目中, 为了使用 jest-circus retry feature,我要去 jest-circus . 正如所记录的,我安装了 jest-circ
这个问题已经有答案了: How to use arrow functions (public class fields) as class methods? (4 个回答) 已关闭 4 年前。 当我尝
我正在使用实现 Browserify-Rails 的 Rails 4.0 项目实现Babelify . 在我的本地和远程 Beta 服务器上,一切似乎都很顺利。但是当我部署到生产环境时,某些文件将被跳
我正在向 dat.gui 界面动态添加控件,但“保存设置”功能无法识别它们。 var mygui = new dat.GUI(); mygui.remember(mygui); // standard
我想创建一个录制方形视频的自定义相机。然而,所有的捕获 session 预设都不是方形格式 例如: 1920x1080 1280x720 640x480 无论如何我可以创建一个自定义预设。我仍然想要高
function floatTo16BitPCM(output, offset, input){ for (var i = 0; i < input.length; i++, offset+=2)
我正在阅读有关使用 systemd 预设的 Fedora 打包指南,但遗漏了一个关键点: 宏 %systemd_post 运行 systemctl preset 意味着有关是否启用或禁用该服务的信息必
错误描述:当为 javascript 代码的简单单元测试运行 jest 时,出现错误测试套件无法运行未知选项:.preset 以下是重现错误的文件: { "name": "Relocati
我正在尝试使用 ffmpeg 和 x264 对视频进行编码。我知道 ffmpeg 从命令行使用程序 ffmpeg 时可以使用 x264 预设。但是在代码中使用 ffmpeg 编码时是否可以轻松使用
我的 npm 包构建使用 babel 运行,我在我的 package.json 中配置了一个 babel 预设 "babel": { "presets": ["es2015"] } 我还配置了一个 m
我们正在尝试使用 javacpp 重新编译 ffmpeg 项目,并启用 --enable-libfdk-aac ,构建可以正常工作,但我们无法使用 libfdk_aac 来解码 audio_strea
美好的一天: 我刚刚通过 NPM 安装了 Babel Preset-ENV 并遇到了这个问题: [nodemon] starting `babel-node server.js server.js`
我正在通过 ffmpeg(在 C++ 程序中)使用 libx264,我需要知道如何激活“非常快”预设。 x264 源代码树中的 grep 生成: include/x264.h:static const
我正在处理的一个项目已经配置了 Jest,并且测试工作正常。这就是当前 jest.config.js 文件的样子; const ignores = [...]; const coverageIgnor
我是一名优秀的程序员,十分优秀!