@datapos/datapos-tool-csv-parse 0.0.8 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3333,9 +3333,10 @@ const qn = function() {
3333
3333
  class zn {
3334
3334
  /** Operations - Build parser. */
3335
3335
  buildParser(e) {
3336
- return qn(e);
3336
+ const r = void 0;
3337
+ return console.log(r), qn(e);
3337
3338
  }
3338
3339
  }
3339
3340
  export {
3340
- zn as CSVParseTool
3341
+ zn as Tool
3341
3342
  };
@@ -1,9 +1,9 @@
1
1
  import { Options, Parser } from 'csv-parse/browser/esm';
2
2
  /** Classes - CSV Parse tool. */
3
- declare class CSVParseTool {
3
+ declare class Tool {
4
4
  /** Operations - Build parser. */
5
5
  buildParser(options: Options): Parser;
6
6
  }
7
7
  /** Exposures */
8
8
  export type { Options, Parser } from 'csv-parse/browser/esm';
9
- export { CSVParseTool };
9
+ export { Tool };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-tool-csv-parse",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -26,6 +26,7 @@
26
26
  ],
27
27
  "prettier": "@datapos/datapos-development/prettierrc",
28
28
  "dependencies": {
29
+ "@datapos/datapos-shared": "^0.3.343",
29
30
  "csv-parse": "^6.1.0",
30
31
  "vitest": "^4.0.16"
31
32
  },