Skip to content

Commit 7821c18

Browse files
committed
Add missing property to the pathFilter data.
1 parent f0f3f76 commit 7821c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/components/package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export class Package {
151151
* @return {string} The path (file or URL) for this package
152152
*/
153153
public static resolvePath(name: string, addExtension: boolean = true): string {
154-
const data = {name, addExtension};
154+
const data = {name, original: name, addExtension};
155155
Loader.pathFilters.execute(data);
156156
return data.name;
157157
}

0 commit comments

Comments
 (0)