UNPKG

jspdf-autotable

Version:

Generate pdf tables with javascript (jsPDF plugin)

68 lines (64 loc) 2.06 kB
var webpack = require("webpack"); var fs = require("fs"); var path = require('path'); const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); var newVersion = require('./package.json').version; var readme = "" + fs.readFileSync('./README.md'); var newVersionStr = "cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/" + newVersion + "/jspdf.plugin.autotable.js"; readme = readme.replace(/cdnjs\.cloudflare\.com\/ajax\/libs\/jspdf-autotable\/.*\/jspdf\.plugin\.autotable\.js/, newVersionStr); fs.writeFileSync('./README.md', readme); module.exports = { entry: { "dist/jspdf.plugin.autotable": "./src/main.ts", "dist/jspdf.plugin.autotable.min": "./src/main.ts", }, resolve: { extensions: [".ts", ".js"] }, output: { path: path.join(__dirname, './'), filename: "[name].js", libraryTarget: "umd", }, module: { rules: [ { test: /\.ts$/, use: [{loader: 'ts-loader'}] } ] }, externals: { "jspdf": { commonjs: "jspdf", commonjs2: "jspdf", amd: "jspdf", root: "jsPDF" } }, performance: { hints: false }, devServer: { contentBase: "./examples", port: 9000, proxy: { "/libs/jspdf.plugin.autotable.js": { target: "http://localhost:9000/dist/", pathRewrite: {"^/libs" : ""} } } }, plugins: [ new webpack.BannerPlugin(` jsPDF AutoTable plugin v${newVersion} Copyright (c) 2014 Simon Bengtsson, https://github.com/simonbengtsson/jsPDF-AutoTable Licensed under the MIT License. http://opensource.org/licenses/mit-license */if (typeof window === 'object') window.jspdfAutoTableVersion = '" + newVersion + "';/*" `) ], optimization: { minimize: true, minimizer: [ new UglifyJSPlugin({ include: /\.min\.js$/, }) ] } };