Skip to content

Commit e1d2755

Browse files
committed
Fix issues with linked libraries in the webpack control files, and update dependencies for some items
1 parent 93f9e5c commit e1d2755

File tree

13 files changed

+23
-17
lines changed

13 files changed

+23
-17
lines changed

components/src/a11y/complexity/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = PACKAGE(
55
'../../../../js', // location of the MathJax js library
66
[ // packages to link to
77
'components/src/a11y/semantic-enrich/lib',
8-
'components/src/mml-input/lib',
8+
'components/src/input/mml/lib',
99
'components/src/core/lib'
1010
],
1111
__dirname // our directory

components/src/a11y/explorer/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = PACKAGE(
66
[ // packages to link to
77
'components/src/ui/menu/lib',
88
'components/src/a11y/semantic-enrich/lib',
9-
'components/src/mml-input/lib',
9+
'components/src/input/mml/lib',
1010
'components/src/core/lib'
1111
],
1212
__dirname // our directory

components/src/a11y/semantic-enrich/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = PACKAGE(
44
'a11y/semantic-enrich', // the package to build
55
'../../../../js', // location of the MathJax js library
66
[ // packages to link to
7-
'components/src/mml-input/lib',
7+
'components/src/input/mml/lib',
88
'components/src/core/lib'
99
],
1010
__dirname // our directory

components/src/dependencies.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Object.defineProperty(exports, '__esModule', {value: true});
33

44
exports.dependencies = {
5-
'a11y/semantic-enrich': ['input/mml', '[sre]'],
5+
'a11y/semantic-enrich': ['input/mml', '[sre]', 'input/mathml'],
66
'a11y/complexity': ['a11y/semantic-enrich'],
7-
'a11y/explorer': ['a11y/semantic-enrich'],
7+
'a11y/explorer': ['a11y/semantic-enrich', 'ui/menu'],
88
'[tex]/all-packages': ['input/tex-base'],
99
'[tex]/action': ['input/tex-base', '[tex]/newcommand'],
1010
'[tex]/autoload': ['input/tex-base', '[tex]/require'],

components/src/input/tex-full/webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ const PACKAGE = require('../../../webpack.common.js');
33
module.exports = PACKAGE(
44
'input/tex-full', // the package to build
55
'../../../../js', // location of the MathJax js library
6-
['components/src/core/lib'], // packages to link to
6+
[ // packages to link to
7+
'components/src/startup/lib',
8+
'components/src/core/lib'
9+
],
710
__dirname // our directory
811
);

components/src/input/tex/extensions/all-packages/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = PACKAGE(
55
'../../../../../../js', // location of the MathJax js library
66
[ // packages to link to
77
'components/src/input/tex-base/lib',
8+
'components/src/startup/lib',
89
'components/src/core/lib'
910
],
1011
__dirname // our directory

components/src/input/tex/extensions/cancel/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = PACKAGE(
55
'../../../../../../js', // location of the MathJax js library
66
[ // packages to link to
77
'components/src/input/tex-base/lib',
8+
'components/src/input/tex/extensions/enclose/lib',
89
'components/src/core/lib'
910
],
1011
__dirname // our directory

components/src/input/tex/webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ const PACKAGE = require('../../../webpack.common.js');
33
module.exports = PACKAGE(
44
'input/tex', // the package to build
55
'../../../../js', // location of the MathJax js library
6-
['components/src/core/lib'], // packages to link to
6+
[ // packages to link to
7+
'components/src/startup/lib',
8+
'components/src/core/lib'
9+
],
710
__dirname // our directory
811
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"component": "output/chtml",
3-
"targets": ["output/chtml.ts", "output/chtml"],
4-
"exclude": ["output/chtml/fonts"]
3+
"targets": ["output/chtml.ts", "output/chtml", "output/common"],
4+
"exclude": ["output/chtml/fonts", "output/common/fonts"]
55
}
66

components/src/output/chtml/fonts/tex/webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ module.exports = PACKAGE(
55
'../../../../../../js', // location of the MathJax js library
66
[ // packages to link to
77
'components/src/core/lib',
8-
'components/src/chtml-output'
8+
'components/src/output/chtml/lib',
9+
'components/src/startup/lib'
910
],
1011
__dirname // our directory
1112
);

0 commit comments

Comments
 (0)