1 Star 0 Fork 1

guojiale/gulp-cli

forked from wpz/gulp-cli 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
WangPengzhen 提交于 2021-04-07 16:37 . init
const fs = require('fs')
const path = require('path')
const webpack = require('webpack')
const srcDir = path.resolve(process.cwd(), './src/static/')
function resolve(dir) {
return path.join(__dirname, './', dir)
}
function getEntry() {
var jsPath = path.resolve(srcDir, 'js')
var dirs = fs.readdirSync(jsPath)
var matchs = []
var files = {}
dirs.forEach((item) => {
matchs = item.match(/(.+)\.js$/);
if (matchs) {
files[matchs[1]] = path.resolve(srcDir, 'js', item)
}
})
// console.log(JSON.stringify(files))
return files
}
module.exports = {
cache: true,
entry: getEntry(),
output: {
path: __dirname + '/dist/static/',
filename: '[name].js',
},
resolve: {
extensions: ['.js', '.jsx', '.json'],
alias: {
'@': resolve('src')
}
},
module: {
rules: [
{
test: /\.js?$/,
exclude: /node_modules/,
use: [ 'babel-loader' ]
},
{
test: /\.scss$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'sass-loader'},
'postcss-loader'
]
},
{
test: /\.(gif|png|jpe?g|svg)$/i,
use: [
{
loader: 'url-loader',
options: {
name: '[name].[ext]?[hash]',
limit: 10000
}
}
]
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'fonts/[name].[hash:7].[ext]'
}
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/guojiale_qd/gulp-cli.git
[email protected]:guojiale_qd/gulp-cli.git
guojiale_qd
gulp-cli
gulp-cli
master

搜索帮助