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

Commit bdb1c06

Browse files
authored
Merge pull request #824 from NativeScript/bundev/fix-css-name
fix(xml-namespace-loader) Fix obvious argument typo
2 parents 8d18853 + 04b60b4 commit bdb1c06

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)