feat(core): Add support for CI workflows and update gitignore

This commit is contained in:
2024-07-05 11:03:59 +02:00
commit 7fc8f04be9
35 changed files with 7285 additions and 0 deletions

26
ts/csvparser.plugins.ts Normal file
View File

@@ -0,0 +1,26 @@
// node native scope
import * as path from 'path';
export { path };
// fin.cx scope
import * as portablefinance from '@fin.cx/portablefinance';
export {
portablefinance
}
// pushrocks scope
import * as smartcsv from '@push.rocks/smartcsv';
import * as smartfile from '@push.rocks/smartfile';
import * as smarthash from '@push.rocks/smarthash';
import * as smartmoney from '@push.rocks/smartmoney';
import * as smartstring from '@push.rocks/smartstring';
import * as smarttime from '@push.rocks/smarttime';
export { smartcsv, smartfile, smarthash, smartmoney, smartstring, smarttime };
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
export { tsclass };