mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
70 lines
1.3 KiB
JavaScript
70 lines
1.3 KiB
JavaScript
var webpack = require("webpack");
|
|
var path = require('path');
|
|
var BabiliPlugin = require("babili-webpack-plugin");
|
|
var PROD = (process.env.NODE_ENV === 'production')
|
|
var LEGACY = (process.env.LEGACY)
|
|
var hostname = "localhost";
|
|
var port = 8080;
|
|
var enter = LEGACY ? {
|
|
"epub.legacy": ["babel-polyfill", "./src/epub.js"]
|
|
} : {
|
|
"epub": "./src/epub.js",
|
|
};
|
|
|
|
module.exports = {
|
|
entry: enter,
|
|
devtool: PROD ? false : 'source-map',
|
|
output: {
|
|
path: path.resolve("./dist"),
|
|
// path: "./dist",
|
|
filename: PROD ? "[name].min.js" : "[name].js",
|
|
sourceMapFilename: "[name].js.map",
|
|
library: "ePub",
|
|
libraryTarget: "umd",
|
|
publicPath: "/dist/"
|
|
},
|
|
externals: {
|
|
"jszip": "JSZip",
|
|
"xmldom": "xmldom"
|
|
},
|
|
plugins: PROD ? [
|
|
new BabiliPlugin()
|
|
] : [],
|
|
resolve: {
|
|
alias: {
|
|
path: "path-webpack"
|
|
}
|
|
},
|
|
devServer: {
|
|
host: hostname,
|
|
port: port,
|
|
inline: true
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules\/(?!(marks-pane)\/).*/,
|
|
loader: "babel-loader",
|
|
query: LEGACY ? {
|
|
presets: ['es2015'],
|
|
plugins: [
|
|
"add-module-exports",
|
|
]
|
|
} : {
|
|
presets: [["env", {
|
|
"targets": {
|
|
"chrome": 54,
|
|
"safari" : 10,
|
|
"firefox" : 50,
|
|
"edge" : 14
|
|
}
|
|
}]],
|
|
plugins: [
|
|
"add-module-exports",
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|