diff --git a/components/src/a11y/complexity/build.json b/components/src/a11y/complexity/build.json index 3c2d75f2a..c26a9b745 100644 --- a/components/src/a11y/complexity/build.json +++ b/components/src/a11y/complexity/build.json @@ -3,7 +3,6 @@ "targets": [ "a11y/complexity.ts", "a11y/complexity", - "a11y/semantic-enrich.ts", - "a11y/sre.ts" + "a11y/semantic-enrich.ts" ] } diff --git a/components/src/a11y/explorer/build.json b/components/src/a11y/explorer/build.json index 3a86275ab..9ebcdc5a1 100644 --- a/components/src/a11y/explorer/build.json +++ b/components/src/a11y/explorer/build.json @@ -1,4 +1,4 @@ { "component": "a11y/explorer", - "targets": ["a11y/explorer.ts", "a11y/sre.ts", "a11y/explorer"] + "targets": ["a11y/explorer.ts", "a11y/explorer"] } diff --git a/components/src/a11y/explorer/webpack.config.js b/components/src/a11y/explorer/webpack.config.js index 1b63c2811..b44c45e70 100644 --- a/components/src/a11y/explorer/webpack.config.js +++ b/components/src/a11y/explorer/webpack.config.js @@ -6,6 +6,7 @@ module.exports = PACKAGE( [ // packages to link to 'components/src/ui/menu/lib', 'components/src/a11y/semantic-enrich/lib', + 'components/src/a11y/sre/lib', 'components/src/input/mml/lib', 'components/src/core/lib' ], diff --git a/components/src/a11y/semantic-enrich/build.json b/components/src/a11y/semantic-enrich/build.json index edf410899..c6f85eacb 100644 --- a/components/src/a11y/semantic-enrich/build.json +++ b/components/src/a11y/semantic-enrich/build.json @@ -1,5 +1,5 @@ { "component": "a11y/semantic-enrich", - "targets": ["a11y/semantic-enrich.ts", "a11y/sre.ts"] + "targets": ["a11y/semantic-enrich.ts"] } diff --git a/components/src/a11y/semantic-enrich/webpack.config.js b/components/src/a11y/semantic-enrich/webpack.config.js index 912c88ef0..8de3e025f 100644 --- a/components/src/a11y/semantic-enrich/webpack.config.js +++ b/components/src/a11y/semantic-enrich/webpack.config.js @@ -6,7 +6,7 @@ module.exports = PACKAGE( [ // packages to link to 'components/src/input/mml/lib', 'components/src/core/lib', - 'node_modules/speech-rule-engine/js' + 'components/src/a11y/sre/lib' ], __dirname // our directory ); diff --git a/components/src/a11y/sre/webpack.config.js b/components/src/a11y/sre/webpack.config.js index 6fecebf11..02741e9d9 100644 --- a/components/src/a11y/sre/webpack.config.js +++ b/components/src/a11y/sre/webpack.config.js @@ -5,8 +5,7 @@ module.exports = PACKAGE( '../../../../js', // location of the MathJax js library [ // packages to link to 'components/src/input/mml/lib', - 'components/src/core/lib', - 'node_modules/speech-rule-engine/js' + 'components/src/core/lib' ], __dirname // our directory );