1 Star 0 Fork 0

tanhaican / vConsole

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
Maiz 提交于 2019-06-30 15:00 . v3.3.1 released
const pkg = require('./package.json');
const Webpack = require('webpack');
const Path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
mode: 'production',
devtool: false,
entry: {
vconsole : Path.resolve(__dirname, './src/vconsole.js')
},
output: {
path: Path.resolve(__dirname, './dist'),
filename: '[name].min.js',
library: 'VConsole',
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [
{
test: /\.html$/, loader: 'html-loader?minimize=false'
},
{
test: /\.js$/, loader: 'babel-loader'
},
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
}
]
},
stats: {
colors: true,
},
plugins: [
new Webpack.BannerPlugin([
'vConsole v' + pkg.version + ' (' + pkg.homepage + ')',
'',
'Tencent is pleased to support the open source community by making vConsole available.',
'Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.',
'Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at',
'http://opensource.org/licenses/MIT',
'Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.'
].join('\n')),
new CopyWebpackPlugin([
{
from: Path.resolve(__dirname, './src/vconsole.d.ts'),
to: Path.resolve(__dirname, './dist/vconsole.min.d.ts')
}
])
]
};
1
https://gitee.com/thc/vConsole.git
git@gitee.com:thc/vConsole.git
thc
vConsole
vConsole
master

搜索帮助