我是使用webpack的新手,我只是想让它在新的空.net核心web项目中处理typescript和less文件,并将相应的js和css文件输出到指定的文件夹。
我设法使用awesome-typescript-loader
使打字稿正常工作。但是,我无法让任何更少的加载器正常工作。
我一直在使用webpack的less-loader documentation。但是,它始终在构建输出中抛出以下错误:
C:\workspace\fakeproject\node_modules\webpack\lib\Chunk.js:460
1> throw new Error(
1> ^
1>EXEC : error : Chunk.entrypoints: Use Chunks.groupsIterable and filter by instanceof Entrypoint instead
这是我的package.json:
{
"version": "1.0.0",
"name": "asp.net",
"private": true,
"devDependencies": {
"awesome-typescript-loader": "^5.0.0-0",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.2",
"less-loader": "^4.0.6",
"style-loader": "^0.20.2",
"typescript": "^2.7.2",
"webpack": "^4.1.0",
"yarn": "^1.5.1"
},
"scripts": {
"build:Debug": "webpack --config webpack.dev.config.js",
"build:Release": "webpack --config webpack.prod.config.js"
}
}
和我的webpack.dev.config.js:
"use strict"
{
const path = require('path');
const outputFolder = "wwwroot/dist/";
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const extractLess = new ExtractTextPlugin({
filename: "[name].[contenthash].css"
});
module.exports = {
"mode": "development",
"entry": {
"styles": "./Styles/main.less",
"scripts": "./Scripts/main.ts",
},
"output": {
"path": path.resolve(__dirname, outputFolder),
"filename": "[name].js",
},
"resolve": {
"extensions": ['.ts', '.tsx', '.js']
},
"devtool": "source-map",
"module": {
"rules": [
{
test: /\.less$/,
use: extractLess.extract({
use: [{
loader: "css-loader"
}, {
loader: "less-loader"
}],
fallback: "style-loader"
})
},
{
"test": /\.tsx?$/,
"loader": 'awesome-typescript-loader',
"exclude": /node_modules/,
}
]
},
plugins: [
extractLess
]
};
}
我使用以下脚本在项目上设置了构建后事件:
npm run-script build:$(ConfigurationName)
我的main.less文件简单如下:
@light-green: #42f49e;
body {
background-color: @light-green;
}
我做错了什么或使用了错误版本的依赖项?提前感谢您的帮助。
答案 0 :(得分:4)
问题不在于您的代码 Webpack刚刚更新到版本4,很多插件仍然有点落后。 破裂变化或不大,所以这应该很快解决。在此之前,留在3.x
可能会更好但是,对于您的情况,已经有extract-text-webpack-plugin
的版本支持webpack 4
您可以安装。
npm install extract-text-webpack-plugin@next