0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00
liabru-matter-js/webpack.config.js

63 lines
2 KiB
JavaScript
Raw Normal View History

2019-09-28 10:15:54 -04:00
/* eslint-env es6 */
2019-09-14 13:36:22 -04:00
"use strict";
const webpack = require('webpack');
const path = require('path');
const pkg = require('./package.json');
2020-11-24 18:45:18 -05:00
const fs = require('fs');
2019-09-14 13:36:22 -04:00
const execSync = require('child_process').execSync;
module.exports = (env = {}) => {
const minimize = env.MINIMIZE || false;
const kind = env.KIND || null;
const sizeThreshold = minimize ? 100 * 1024 : 512 * 1024;
2019-09-14 13:36:22 -04:00
const commitHash = execSync('git rev-parse --short HEAD').toString().trim();
const version = !kind ? pkg.version : `${pkg.version}-${kind}+${commitHash}`;
2020-11-24 18:45:18 -05:00
const license = fs.readFileSync('LICENSE', 'utf8');
const resolve = relativePath => path.resolve(__dirname, relativePath);
2020-03-09 18:07:34 -04:00
const banner =
`${pkg.name} ${version} by @liabru
${kind ? 'Experimental pre-release build.\n ' : ''}${pkg.homepage}
2020-11-24 18:45:18 -05:00
License ${pkg.license}${!minimize ? '\n\n' + license : ''}`;
2019-09-14 13:36:22 -04:00
return {
entry: { 'matter': './src/module/main.js' },
node: false,
2019-09-14 13:36:22 -04:00
output: {
library: 'Matter',
libraryTarget: 'umd',
umdNamedDefine: true,
globalObject: 'this',
path: resolve('./build'),
filename: `[name]${kind ? '.' + kind : ''}${minimize ? '.min' : ''}.js`
2019-09-14 13:36:22 -04:00
},
optimization: { minimize },
performance: {
maxEntrypointSize: sizeThreshold,
maxAssetSize: sizeThreshold
2019-09-14 13:36:22 -04:00
},
plugins: [
new webpack.BannerPlugin(banner),
new webpack.DefinePlugin({
__MATTER_VERSION__: JSON.stringify(version),
2019-09-14 13:36:22 -04:00
})
],
externals: {
'poly-decomp': {
commonjs: 'poly-decomp',
commonjs2: 'poly-decomp',
amd: 'poly-decomp',
root: 'decomp'
},
'matter-wrap': {
commonjs: 'matter-wrap',
commonjs2: 'matter-wrap',
amd: 'matter-wrap',
root: 'MatterWrap'
2019-09-14 13:36:22 -04:00
}
}
};
};