mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 00:07:08 +00:00
76 lines
1.4 KiB
JavaScript
76 lines
1.4 KiB
JavaScript
const path = require("path");
|
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
|
|
///////////////////////////////////////
|
|
// Defaults
|
|
///////////////////////////////////////
|
|
|
|
const defaults = {
|
|
mode : "development",
|
|
context : __dirname,
|
|
entry : {
|
|
Tone : "./Tone/index.js",
|
|
},
|
|
output : {
|
|
path : path.resolve(__dirname, "build"),
|
|
filename : "[name].js",
|
|
library : "Tone",
|
|
libraryTarget : "umd",
|
|
},
|
|
resolve : {
|
|
modules : [
|
|
"node_modules",
|
|
path.resolve(__dirname, "."),
|
|
path.resolve(__dirname, "test")
|
|
],
|
|
},
|
|
devtool : "cheap-source-map",
|
|
};
|
|
|
|
///////////////////////////////////////
|
|
// Scratch
|
|
///////////////////////////////////////
|
|
|
|
const scratch = Object.assign({}, defaults, {
|
|
entry : {
|
|
scratch : "./scratch.js",
|
|
},
|
|
plugins : [
|
|
new HtmlWebpackPlugin()
|
|
],
|
|
});
|
|
|
|
///////////////////////////////////////
|
|
// Tests
|
|
///////////////////////////////////////
|
|
|
|
const test = Object.assign({}, defaults, {
|
|
entry : {
|
|
test : "./test/test.js",
|
|
},
|
|
plugins : [
|
|
new HtmlWebpackPlugin({
|
|
filename : "test.html",
|
|
template : "./test/index.html",
|
|
})
|
|
],
|
|
});
|
|
|
|
///////////////////////////////////////
|
|
// Production
|
|
///////////////////////////////////////
|
|
|
|
const production = Object.assign({}, defaults, {
|
|
mode : "production",
|
|
devtool : "source-map",
|
|
});
|
|
|
|
module.exports = env => {
|
|
if (env.test){
|
|
return test;
|
|
} else if (env.production){
|
|
return production;
|
|
} else {
|
|
return scratch;
|
|
}
|
|
};
|