ts-loader使用happypack后打包更慢了
代碼如下
const path = require('path');
const fs = require('fs');
const lessToJs = require('less-vars-to-js');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const env = process.argv.slice(-1)[0];
const devUrlLoader = 'url-loader?limit=8192&name=[hash:8].[name].[ext]';
const prodUrlLoader = 'url-loader?limit=8192&name=[hash:8].[name].[ext]&outputPath=assets/images/&publicPath=assets/images';
// 獲取自己定義的要覆蓋antd默認(rèn)樣式的文件
const themeVariables = lessToJs(fs.readFileSync(path.join(__dirname, '../src/assets/style/theme.less'), 'utf8'));
module.exports = {
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
// loader: 'happypack/loader?id=js',
loader: 'babel-loader',
},
{
// loader: 'happypack/loader?id=ts', // 用這個(gè)打包速度慢了很多
loader: 'ts-loader',
},
],
include: [
path.join(__dirname, '../src'),
],
},
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
{
loader: 'happypack/loader?id=js',
// loader: 'babel-loader',
},
],
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: [{
loader: 'css-loader',
}],
fallback: 'style-loader',
}),
},
{
test: /\.sass$/,
use: ['style-loader', 'css-loader', 'sass-loader?outputStyle=expanded&indentedSyntax'],
}, {
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader?outputStyle=expanded'],
},
{
test: /\.less$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
use: [{
loader: 'happypack/loader?id=less_src', // 用這個(gè)打包速度慢了很多
}],
fallback: 'style-loader',
}),
},
{
test: /\.less$/,
exclude: /src/,
use: ExtractTextPlugin.extract({
use: [{
loader: 'happypack/loader?id=less_node_modules', // 用這個(gè)打包速度慢了很多
}],
fallback: 'style-loader',
}),
},
{
test: /\.(png|jpe?g|gif|woff|woff2|ttf|eot)$/,
loader: env === 'development' ? devUrlLoader : prodUrlLoader,
},
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
},
],
},
plugins: [
],
resolve: {
modules: [
path.resolve(__dirname, '../src'),
'node_modules',
],
extensions: ['.js', '.json', '.jsx', '.ts', '.tsx'],
alias: {
src: path.resolve(__dirname, '../src/'),
},
},
};
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const merge = require('webpack-merge');
const lessToJs = require('less-vars-to-js');
const fs = require('fs');
// happypack 加速打包
const HappyPack = require('happypack');
const os = require('os');
const happyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length });
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const commonConfig = require('./webpack.base.js');
// 獲取自己定義的要覆蓋antd默認(rèn)樣式的文件
const themeVariables = lessToJs(fs.readFileSync(path.join(__dirname, '../src/assets/style/theme.less'), 'utf8'));
module.exports = function (env) {
return merge(commonConfig, {
cache: true,
devtool: 'cheap-module-eval-source-map',
entry: {
bundle: [
'react-hot-loader/patch',
'webpack-dev-server/client?http://localhost:8000',
'webpack/hot/only-dev-server',
'./src/index.tsx',
],
vendor: ['react', 'react-dom'],
lib: ['antd'],
},
output: {
path: path.join(__dirname, '/../dist/assets'),
filename: '[name].js',
publicPath: '/assets/',
sourceMapFilename: '[name].map',
},
devServer: {
historyApiFallback: true,
noInfo: false,
hot: true,
open: true,
stats: 'minimal',
contentBase: './src/',
publicPath: '/assets/',
compress: true,
port: 8000,
proxy: {
'/api/*': {
target: 'http://localhost:9090',
secure: false,
changeOrigin: true,
},
},
},
optimization: {
runtimeChunk: {
name: 'manifest',
},
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin({
filename: 'style.css',
disable: false,
allChunks: true,
}),
new HappyPack({
id: 'ts',
threadPool: happyThreadPool,
loaders: [
{
path: 'ts-loader',
query: { happyPackMode: true, transpileOnly: true },
},
],
}),
new ForkTsCheckerWebpackPlugin({ checkSyntacticErrors: true }),
new HappyPack({
id: 'js',
loaders: ['babel-loader'],
threadPool: happyThreadPool,
}),
new HappyPack({
id: 'less_src',
loaders: [{
loader: 'css-loader',
options: {
importLoaders: 1,
modules: true,
namedExport: true,
camelCase: true,
localIdentName: '[path][name]__[local]--[hash:base64:5]',
},
}, {
loader: 'postcss-loader',
},
{
loader: 'less-loader',
options: {
javascriptEnabled: true,
modifyVars: themeVariables,
},
}],
threadPool: happyThreadPool,
}),
new HappyPack({
id: 'less_node_modules',
loaders: [{
loader: 'css-loader',
options: {
importLoaders: 1,
},
}, {
loader: 'postcss-loader',
},
{
loader: 'less-loader',
options: {
javascriptEnabled: true,
modifyVars: themeVariables,
},
}],
threadPool: happyThreadPool,
}),
],
});
};
不明白是為什么,打包反而更慢了,難倒我配置錯(cuò)了?
這是我的項(xiàng)目,完整的代碼在這里
https://github.com/wanliyunya...
2018/8/9
不僅僅ts慢了,打包less樣式也變慢了。我覺(jué)得是我的配置問(wèn)題呢!??!大神們幫我看看唄
是首次慢還是每次更改文件都慢?happypack提速的原理之一是緩存,但是這個(gè)是建立在你的依賴(lài)關(guān)系比較清晰的情況下,依賴(lài)清晰的意思就是,該用的時(shí)候 import,不該用的時(shí)候不 import,如果依賴(lài)關(guān)系特別復(fù)雜,可能影響緩存命中率。
雖然說(shuō)現(xiàn)在我也不折騰 webpack 了,不過(guò)從 1.0 用到 3.0 總體的感覺(jué)是這樣的,就是如果要提高構(gòu)建速度,那么使用 webpack 官方提供的一些最佳實(shí)踐其實(shí)已經(jīng)足夠了,比如 CommonChunk、resolve、alias等,除了配置本身,和你書(shū)寫(xiě)代碼的方式也很有關(guān)系,良好的代碼組織方式也有利于構(gòu)建工具進(jìn)行自動(dòng)優(yōu)化。
在這個(gè)基礎(chǔ)上,使用 happypack 這種插件也只是錦上添花的而已,它本身并不會(huì)瞬間將你的開(kāi)發(fā)體驗(yàn)提升一個(gè)量級(jí)。
希望有所幫助。
北大青鳥(niǎo)APTECH成立于1999年。依托北京大學(xué)優(yōu)質(zhì)雄厚的教育資源和背景,秉承“教育改變生活”的發(fā)展理念,致力于培養(yǎng)中國(guó)IT技能型緊缺人才,是大數(shù)據(jù)專(zhuān)業(yè)的國(guó)家
達(dá)內(nèi)教育集團(tuán)成立于2002年,是一家由留學(xué)海歸創(chuàng)辦的高端職業(yè)教育培訓(xùn)機(jī)構(gòu),是中國(guó)一站式人才培養(yǎng)平臺(tái)、一站式人才輸送平臺(tái)。2014年4月3日在美國(guó)成功上市,融資1
北大課工場(chǎng)是北京大學(xué)校辦產(chǎn)業(yè)為響應(yīng)國(guó)家深化產(chǎn)教融合/校企合作的政策,積極推進(jìn)“中國(guó)制造2025”,實(shí)現(xiàn)中華民族偉大復(fù)興的升級(jí)產(chǎn)業(yè)鏈。利用北京大學(xué)優(yōu)質(zhì)教育資源及背
博為峰,中國(guó)職業(yè)人才培訓(xùn)領(lǐng)域的先行者
曾工作于聯(lián)想擔(dān)任系統(tǒng)開(kāi)發(fā)工程師,曾在博彥科技股份有限公司擔(dān)任項(xiàng)目經(jīng)理從事移動(dòng)互聯(lián)網(wǎng)管理及研發(fā)工作,曾創(chuàng)辦藍(lán)懿科技有限責(zé)任公司從事總經(jīng)理職務(wù)負(fù)責(zé)iOS教學(xué)及管理工作。
浪潮集團(tuán)項(xiàng)目經(jīng)理。精通Java與.NET 技術(shù), 熟練的跨平臺(tái)面向?qū)ο箝_(kāi)發(fā)經(jīng)驗(yàn),技術(shù)功底深厚。 授課風(fēng)格 授課風(fēng)格清新自然、條理清晰、主次分明、重點(diǎn)難點(diǎn)突出、引人入勝。
精通HTML5和CSS3;Javascript及主流js庫(kù),具有快速界面開(kāi)發(fā)的能力,對(duì)瀏覽器兼容性、前端性能優(yōu)化等有深入理解。精通網(wǎng)頁(yè)制作和網(wǎng)頁(yè)游戲開(kāi)發(fā)。
具有10 年的Java 企業(yè)應(yīng)用開(kāi)發(fā)經(jīng)驗(yàn)。曾經(jīng)歷任德國(guó)Software AG 技術(shù)顧問(wèn),美國(guó)Dachieve 系統(tǒng)架構(gòu)師,美國(guó)AngelEngineers Inc. 系統(tǒng)架構(gòu)師。