Compare commits

...

2 Commits

Author SHA1 Message Date
55fc30139f 5.0.17 2024-04-22 18:41:58 +02:00
be85880e54 fix(core): update 2024-04-22 18:41:58 +02:00
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartpath", "name": "@push.rocks/smartpath",
"version": "5.0.16", "version": "5.0.17",
"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.16', version: '5.0.17',
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

@ -1,3 +1,5 @@
import * as plugins from './smartpath.plugins.js';
// import modules // import modules
import * as check from './smartpath.check.js'; import * as check from './smartpath.check.js';
import * as get from './smartpath.get.js'; import * as get from './smartpath.get.js';
@ -5,4 +7,6 @@ import * as transform from './smartpath.transform.js';
export { check, get, transform }; export { check, get, transform };
export const join = (...args: string[]) => plugins.path.join(...args);
export * from './smartpath.classes.smartpath.js'; export * from './smartpath.classes.smartpath.js';