Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit 04b60b4

Browse files
authored
Fix broken name in XML namespace loader
Stumbled on it while debugging something else.
1 parent 8d18853 commit 04b60b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xml-namespace-loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ module.exports = function (source) {
4444
.catch((err) => {}),
4545

4646
resolvePromise(this.context, `${noExtFilename}.css`)
47-
.then((xml) => {
48-
this.addDependency(xml);
47+
.then((css) => {
48+
this.addDependency(css);
4949
namespaces.push({ name: `${moduleName}.css`, path: css });
5050
})
5151
.catch((err) => {})

0 commit comments

Comments
 (0)