123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /**
- * @fileoverview webpack.
- *
- * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
- * @version 0.2.0.1, Jan 4, 2020
- */
- const path = require('path')
- const webpack = require('webpack')
- const MiniCssExtractPlugin = require('mini-css-extract-plugin')
- const {CleanWebpackPlugin} = require('clean-webpack-plugin')
- const CopyPlugin = require('copy-webpack-plugin')
- const TerserPlugin = require('terser-webpack-plugin')
- const BundleAnalyzerPlugin = require(
- 'webpack-bundle-analyzer').BundleAnalyzerPlugin
- const pkg = require('./package.json')
- const banner = new webpack.BannerPlugin({
- banner: `Vditor v${pkg.version} - A markdown editor written in TypeScript.
- MIT License
- Copyright (c) 2018-present B3log 开源, b3log.org
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
- `,
- entryOnly: true,
- })
- module.exports = [
- {
- mode: 'production',
- output: {
- filename: '[name].js',
- path: path.resolve(__dirname, 'dist'),
- // chunkFilename: '[name].bundle.js',
- // publicPath: `${pkg.cdn}/vditor@${pkg.version}/dist/`,
- libraryTarget: 'umd',
- library: 'Vditor',
- libraryExport: 'default',
- globalObject: 'this',
- },
- entry: {
- 'index.min': './src/index.ts',
- 'method.min': './src/method.ts',
- 'index': './src/index.ts',
- 'method': './src/method.ts',
- },
- optimization: {
- minimize: true,
- minimizer: [
- new TerserPlugin({
- include: ['index.min.js', 'method.min.js'],
- terserOptions: {
- format: {
- comments: false,
- },
- },
- extractComments: false,
- }),
- ],
- },
- resolve: {
- extensions: ['.ts', '.js', '.less', 'png'],
- },
- module: {
- rules: [
- {
- test: /\.png$/,
- include: [path.resolve(__dirname, './src/assets/images')],
- use: [
- 'file-loader',
- ],
- },
- {
- test: /\.js$/,
- exclude: '/node_modules/',
- use: {
- loader: 'babel-loader',
- options: {
- presets: [
- [
- '@babel/env',
- {
- targets: {
- browsers: [
- 'last 2 Chrome major versions',
- 'last 2 Firefox major versions',
- 'last 2 Safari major versions',
- 'last 2 Edge major versions',
- 'last 2 iOS major versions',
- 'last 2 ChromeAndroid major versions',
- ],
- },
- },
- ],
- ],
- },
- },
- },
- {
- test: /\.ts$/,
- use: 'ts-loader',
- },
- {
- test: /\.less$/,
- include: [path.resolve(__dirname, 'src/assets')],
- use: [
- MiniCssExtractPlugin.loader,
- {
- loader: 'css-loader', // translates CSS into CommonJS
- options: {
- url: false,
- },
- },
- {
- loader: 'postcss-loader',
- options: {
- postcssOptions: {
- plugins: [
- ['autoprefixer', {grid: true, remove: false}],
- ],
- },
- },
- },
- {
- loader: 'less-loader', // compiles Less to CSS
- },
- ],
- },
- ],
- },
- plugins: [
- // new BundleAnalyzerPlugin(),
- new CleanWebpackPlugin({
- cleanOnceBeforeBuildPatterns: [
- path.join(__dirname, 'dist')],
- }),
- new webpack.DefinePlugin({
- VDITOR_VERSION: JSON.stringify(pkg.version),
- }),
- new MiniCssExtractPlugin({
- filename: 'index.css',
- }),
- banner,
- new CopyPlugin({
- patterns: [
- {from: 'src/css', to: 'css'},
- {from: 'src/images', to: 'images'},
- {from: 'src/js', to: 'js'},
- {from: 'types', to: 'types'},
- ],
- }),
- ],
- }]
|