fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-20 10:17:51 +02:00
parent de54eb828f
commit 6fae04e92a
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartpath',
version: '5.0.15',
version: '5.0.16',
description: 'A library offering smart ways to handle file and directory paths.'
}

View File

@ -22,7 +22,7 @@ export const dirnameFromImportMetaUrl = (importMetaUrlArg: string) => {
};
export const dirname = (pathArg: string) => {
return dirnameFromImportMetaUrl(pathArg);
return plugins.path.dirname(pathArg);
}
/**