-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update webpack files for empheq and cases (mathjax/MathJax#2762)
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
); | ||
|