Skip to content

Commit

Permalink
fix: add xpixel missing name mapping (#1895)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs authored Oct 18, 2024
1 parent a36d370 commit 0800f36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ import {
CommandBarDirectoryName,
NinetailedDisplayName,
NinetailedDirectoryName,
XPixelDisplayName,
XPixelDirectoryName,
} from './destinationNames';

// The destination directory name is used as the destination SDK file name in CDN
Expand Down Expand Up @@ -241,6 +243,7 @@ const destDisplayNamesToFileNamesMap: Record<string, string> = {
[SpotifyPixelDisplayName]: SpotifyPixelDirectoryName,
[CommandBarDisplayName]: CommandBarDirectoryName,
[NinetailedDisplayName]: NinetailedDirectoryName,
[XPixelDisplayName]: XPixelDirectoryName,
};

export { destDisplayNamesToFileNamesMap };
Original file line number Diff line number Diff line change
Expand Up @@ -290,3 +290,7 @@ export {
DISPLAY_NAME as NinetailedDisplayName,
DIR_NAME as NinetailedDirectoryName,
} from './Ninetailed/constants';
export {
DISPLAY_NAME as XPixelDisplayName,
DIR_NAME as XPixelDirectoryName,
} from './XPixel/constants';

0 comments on commit 0800f36

Please sign in to comment.