12 lines
444 B
JavaScript
12 lines
444 B
JavaScript
const PACKAGE = require('../../../webpack.common.js');
|
|
|
|
module.exports = PACKAGE(
|
|
'a11y/sre', // the package to build
|
|
'../../../../js', // location of the MathJax js library
|
|
[ // packages to link to
|
|
'components/src/input/mml/lib',
|
|
'components/src/core/lib',
|
|
'components/src/startup/lib'
|
|
],
|
|
__dirname // our directory
|
|
);
|