fix(core): update

This commit is contained in:
2024-06-21 19:48:43 +02:00
commit 84a10a89de
109 changed files with 11639 additions and 0 deletions

10
ts/mod_helpers/index.ts Normal file
View File

@ -0,0 +1,10 @@
import * as plugins from './mod.plugins.js';
export const run = async (argvArg) => {
const command = argvArg._[1];
switch (command) {
case 'shortid':
console.log('Here is new shortid');
console.log(plugins.smartunique.shortId());
}
};

View File

@ -0,0 +1,5 @@
export * from '../plugins.js';
import * as smartunique from '@push.rocks/smartunique';
export { smartunique };