Skip to content

Commit

Permalink
Merge pull request #744 from mathjax/issue2762
Browse files Browse the repository at this point in the history
Update webpack files for empheq and cases (mathjax/MathJax#2762)
  • Loading branch information
dpvc authored Feb 22, 2022
2 parents 6700bd5 + 571e9fc commit 39c26cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions components/src/input/tex/extensions/cases/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
const PACKAGE = require('../../../../../webpack.common.js');

module.exports = PACKAGE(
'cases', // the package to build
'../../../../../js', // location of the compiled js files
[ // packages to link to (relative to Mathjax components)
'input/tex/extensions/cases', // the package to build
'../../../../../../js', // location of the compiled js files
[ // packages to link to (relative to Mathjax components)
'components/src/input/tex-base/lib',
'components/src/input/tex/extensions/ams/lib',
'components/src/input/tex/extensions/empheq/lib',
'components/src/core/lib'
],
__dirname // our directory
__dirname // our directory
);

8 changes: 4 additions & 4 deletions components/src/input/tex/extensions/empheq/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const PACKAGE = require('../../../../../webpack.common.js');

module.exports = PACKAGE(
'empheq', // the package to build
'../../../../../js', // location of the compiled js files
[ // packages to link to
'input/tex/extensions/empheq', // the package to build
'../../../../../../js', // location of the compiled js files
[ // packages to link to
'components/src/input/tex-base/lib',
'components/src/core/lib'
],
__dirname // our directory
__dirname // our directory
);

0 comments on commit 39c26cd

Please sign in to comment.