mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 03:08:40 +00:00
* Initial webpack config. Moving to ES6 modules. Some module cleanup. * WIP * WIP * Removing commented out code. * Removing old deps. * Removing the build script (used for testing). * Working tests. * Switching to node api over cli. * Updating per comments. Still need to fix server.js to properly run the selenium tests. * Cleaning up the config. * More cleanup. * Bringing back server.js for selenium tests. * Bringing back old dependencies. * Adding back eslint rules for webpack config. Final cleanup for webpack config. * Pointing to correct pre-existing module versions. Adding some extra logic to server.js to ensure it gets transpiled properly. * Getting make build to work again. Updating package.json with some shortcut scripts. * Resolving conflict. * Reverting back to commonjs modules. * Removing extra spaces in babelrc
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
const path = require('path');
|
|
|
|
const katexConfig = {
|
|
entry: ['./katex.js'],
|
|
output: {
|
|
path: path.join(__dirname, 'build'),
|
|
filename: 'katex.js',
|
|
library: 'katex',
|
|
libraryTarget: 'umd',
|
|
libraryExport: 'default',
|
|
},
|
|
};
|
|
|
|
const copyTexConfig = {
|
|
entry: ['./contrib/copy-tex/copy-tex.js'],
|
|
output: {
|
|
path: path.join(__dirname, 'build', 'contrib', 'copy-tex'),
|
|
filename: 'copy-tex.js',
|
|
},
|
|
};
|
|
|
|
const autoRenderConfig = {
|
|
entry: ['./contrib/auto-render/auto-render.js'],
|
|
output: {
|
|
path: path.join(__dirname, 'build', 'contrib', 'auto-render'),
|
|
filename: 'auto-render.js',
|
|
library: 'renderMathInElement',
|
|
libraryTarget: 'umd',
|
|
libraryExport: 'default',
|
|
},
|
|
};
|
|
|
|
const commonConfig = {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
use: 'babel-loader',
|
|
exclude: /node_modules\//,
|
|
},
|
|
],
|
|
},
|
|
devtool: 'eval-source-map',
|
|
};
|
|
|
|
module.exports = {
|
|
compilerConfig: [
|
|
Object.assign({}, katexConfig, commonConfig),
|
|
Object.assign({}, copyTexConfig, commonConfig),
|
|
Object.assign({}, autoRenderConfig, commonConfig),
|
|
],
|
|
devServerConfig: {
|
|
publicPath: '/',
|
|
contentBase: path.join(__dirname, 'build'),
|
|
stats: {
|
|
colors: true,
|
|
},
|
|
},
|
|
};
|