Compare commits

..

2 Commits

Author SHA1 Message Date
ebc523cb9f 5.0.16 2024-04-20 10:17:51 +02:00
6fae04e92a fix(core): update 2024-04-20 10:17:51 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartpath", "name": "@push.rocks/smartpath",
"version": "5.0.15", "version": "5.0.16",
"private": false, "private": false,
"description": "A library offering smart ways to handle file and directory paths.", "description": "A library offering smart ways to handle file and directory paths.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartpath', name: '@push.rocks/smartpath',
version: '5.0.15', version: '5.0.16',
description: 'A library offering smart ways to handle file and directory paths.' 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) => { export const dirname = (pathArg: string) => {
return dirnameFromImportMetaUrl(pathArg); return plugins.path.dirname(pathArg);
} }
/** /**