- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为名为 Quill 的开源库运行 webpack 配置。 , 它使用 Webpack 作为 bundler 。当我运行命令 webpack --config ./_develop/webpack.config.js
时,配置尝试执行的每个 .js 文件都会出现以下错误:
ERROR in ./ui/tooltip.js
C:\Users\rinktacular\Documents\Projects\Quill\ui\tooltip.js
1:16 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
2:40 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
3:24 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
4:61 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
5:50 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
6:53 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
7:61 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
8:57 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
9:75 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
10:10 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
11:6 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
12:17 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
13:4 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
14:1 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
15:11 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
16:42 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
17:4 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
18:1 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
19:24 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
20:77 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
21:62 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
22:60 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
23:40 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
24:38 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
25:43 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
26:72 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
27:56 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
28:19 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
29:52 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
30:56 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
31:52 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
32:6 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
33:50 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
34:54 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
35:52 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
36:6 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
37:54 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
38:55 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
39:69 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
40:58 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
41:42 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
42:6 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
43:18 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
44:4 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
45:1 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
46:11 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
47:46 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
48:45 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
49:4 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
50:2 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
51:1 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
52:1 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
53:24 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style
✖ 53 problems (53 errors, 0 warnings)
53 errors, 0 warnings potentially fixable with the `--fix` option.
@ ./quill.js 101:15-38
@ multi ./quill.js
这是配置:
var path = require('path');
var pkg = require('../package.json');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var bannerPack = new webpack.BannerPlugin({
banner:
'Quill Editor v' + pkg.version + '\n' +
'https://quilljs.com/\n' +
'Copyright (c) 2014, Jason Chen\n' +
'Copyright (c) 2013, salesforce.com',
entryOnly: true
});
var constantPack = new webpack.DefinePlugin({
QUILL_VERSION: JSON.stringify(pkg.version)
});
var source = [
'quill.js',
'core.js',
'blots',
'core',
'formats',
'modules',
'test',
'themes',
'ui'
].map(function(file) {
return path.resolve(__dirname, '..', file);
});
module.exports = function(env) {
let config = {
context: path.resolve(__dirname, '..'),
entry: {
'quill.js': ['./quill.js'],
'quill.core.js': ['./core.js'],
'quill.core': './assets/core.styl',
'quill.bubble': './assets/bubble.styl',
'quill.snow': './assets/snow.styl',
'unit.js': './test/unit.js'
},
output: {
filename: '[name]',
library: 'Quill',
libraryExport: 'default',
libraryTarget: 'umd',
path: path.resolve(__dirname, '../dist/')
},
resolve: {
alias: {
'parchment': path.resolve(__dirname, '../node_modules/parchment/src/parchment')
},
extensions: ['.js', '.styl', '.ts']
},
module: {
rules: [{
test: /\.js$/,
use: ['eslint-loader'],
include: source,
enforce: 'pre'
}, {
test: /\.ts$/,
use: [{
loader: 'ts-loader',
options: {
compilerOptions: {
declaration: false,
target: 'es5',
module: 'commonjs'
},
transpileOnly: true
}
}]
}, {
test: /\.styl$/,
include: [
path.resolve(__dirname, '../assets')
],
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
'css-loader',
'stylus-loader'
]
})
}, {
test: /\.svg$/,
include: [
path.resolve(__dirname, '../assets/icons')
],
use: [{
loader: 'html-loader',
options: {
minimize: true
}
}]
}, {
test: /\.js$/,
include: source,
use: [{
loader: 'babel-loader',
options: {
presets: ['es2015']
}
}]
}],
noParse: [
/\/node_modules\/clone\/clone\.js$/,
/\/node_modules\/eventemitter3\/index\.js$/,
/\/node_modules\/extend\/index\.js$/
]
},
plugins: [
bannerPack,
constantPack,
new ExtractTextPlugin({
filename: '[name].css',
allChunks: true
})
],
devServer: {
contentBase: path.resolve(__dirname, '../dist'),
hot: false,
port: process.env.npm_package_config_ports_webpack,
stats: 'minimal',
disableHostCheck: true
}
};
if (env && env.dev) {
config.module.rules = config.module.rules.slice(1); // Remove linter
config.module.rules[3].use[0].options = {
plugins: ['transform-es2015-modules-commonjs']
};
}
if (env && env.minimize) {
config.entry = {
'quill.min.js': './quill.js'
};
config.plugins.push(
new webpack.optimize.UglifyJsPlugin({
sourceMap: true
})
);
config.devtool = 'source-map';
}
if (env && env.coverage) {
config.module.rules[4].use[0].options = {
plugins: ['istanbul', 'transform-es2015-modules-commonjs']
};
}
return config;
};
当然,这都是开源的,我没有改变任何东西,所以这是按照他们在 Local Development 上的指示进行的全新安装。 。因此,我真的不太清楚 webpack 的配置是如何工作的,我的配置文件有什么问题,以及我可以做些什么来改变它。
最佳答案
你的 webpack 中有一条规则,告诉你使用加载器加载 js 文件。这个加载器是“eslint-loader”,这个加载器用于 lint 你的 js 文件。这个加载程序告诉您换行不正确。有两种方法可以解决这个问题:
LF (\n) 是 Linux 中使用的换行符,而 CRLF 是 Windows 中使用的换行符 (\r\n)
您还可以使用“eslint --fix”尝试修复此问题
./node_modules/.bin/eslint --fix yourFileThatHaserrors
但是如果您使用转换换行符的编辑器,则每次保存文件时都会发生这种情况。
总结一下:
关于javascript - 尝试运行我的 "webpack --config ./webpack.config.js"时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47794500/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!