forked from pencil-js/pencil.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
35 lines (32 loc) · 971 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const { resolve } = require("path");
const { BannerPlugin } = require("webpack");
const { name, version, homepage, author, license } = require("./modules/pencil.js/package.json");
const mainModule = "./modules/pencil.js/";
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"],
},
},
},
],
},
plugins: [
new BannerPlugin(`${name} v${version} ${homepage}
${license} license - © ${author}`),
],
entry: resolve(__dirname, `${mainModule}pencil.js`),
output: {
path: resolve(__dirname, `${mainModule}dist`),
filename: "pencil.min.js",
library: "Pencil",
libraryTarget: "this",
libraryExport: "default",
},
};