UNPKG

m-persian-datepicker

Version:

jQuery datepicker plugin work with Iranian calendar. (Jalali)

50 lines (49 loc) 1.34 kB
// https://webpack.js.org/configuration/ const minimize = true; let webpack = require('webpack'), path = require('path'), pkg = require("./package.json"), fileName = pkg.name + ".js", plugins = [ new webpack.DefinePlugin({ __VERSION__: JSON.stringify(pkg.version) }) ]; if (minimize) { plugins.push(new webpack.optimize.UglifyJsPlugin()); fileName = pkg.name + ".min.js"; } module.exports = { entry: "./src/es6/index.js", // string | object | array output: { library: "persianDatepicker", libraryTarget: "umd2", path: path.resolve(__dirname, "dist/js"), // string filename: fileName // string }, devServer: { contentBase: path.join(__dirname, "/"), port: 3000, host : 'localhost' }, module: { rules: [ { test: /\.js$/, include: [ path.resolve(__dirname, "./src/es6") ], exclude: [ path.resolve(__dirname, "./node_module") ], use: { loader: 'babel-loader', options: { presets: ['es2015'] } } } ] }, plugins: plugins }