9 lines
339 B
JavaScript
9 lines
339 B
JavaScript
|
|
const PACKAGE = require('../../../webpack.common.js');
|
||
|
|
|
||
|
|
module.exports = PACKAGE(
|
||
|
|
'adaptors/liteDOM', // the package to build
|
||
|
|
'../../../../js', // location of the MathJax js library
|
||
|
|
['components/src/core/lib'], // packages to link to
|
||
|
|
__dirname // our directory
|
||
|
|
);
|