@elliemae/ds-csv-converter 2.3.0-alpha.3 → 2.3.0-alpha.8

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.
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@elliemae/ds-csv-converter",
3
- "version": "2.3.0-alpha.3",
3
+ "version": "2.3.0-alpha.8",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - CSV converting utilities",
6
- "module": "./esm/index.js",
7
- "main": "./cjs/index.js",
8
- "types": "./types/index.d.ts",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "module": "./dist/esm/index.js",
10
+ "main": "./dist/cjs/index.js",
11
+ "types": "./dist/types/index.d.ts",
9
12
  "exports": {
10
13
  ".": {
11
- "import": "./esm/index.js",
12
- "require": "./cjs/index.js"
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.js"
13
16
  }
14
17
  },
15
18
  "sideEffects": [],
@@ -18,19 +21,18 @@
18
21
  "url": "https://git.elliemae.io/platform-ui/dimsum.git"
19
22
  },
20
23
  "engines": {
21
- "npm": ">=7",
22
- "node": ">=14"
24
+ "pnpm": ">=6",
25
+ "node": ">=16"
23
26
  },
24
27
  "author": "ICE MT",
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "typeSafety": false
31
+ },
25
32
  "scripts": {
26
33
  "prebuild": "exit 0",
27
34
  "predev": "exit 0",
28
35
  "build": "node ../../scripts/build/build.js",
29
36
  "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w"
30
- },
31
- "publishConfig": {
32
- "access": "public",
33
- "directory": "dist",
34
- "generateSubmodules": true
35
37
  }
36
38
  }
package/types/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export declare function list2csv(list: Record<string, string>[], map: Record<string, string> | Map<string, string>): string;
2
- export declare function listToCsvBlob(list: Record<string, string>[], map: Record<string, string> | Map<string, string>): Blob;
3
- export declare function listToCsvFile(list: Record<string, string>[], fileName: string | undefined, map: Record<string, string> | Map<string, string>): void;