Skip to content

Commit

Permalink
feat: backport support for node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Oct 22, 2021
1 parent a75daa9 commit dbfeb78
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion packages/csv-generate/package.json
Expand Up @@ -43,7 +43,7 @@
],
"homepage": "https://csv.js.org/generate/",
"license": "MIT",
"main": "./dist/cjs",
"main": "./dist/cjs/index.cjs",
"mocha": {
"inline-diffs": true,
"loader": "./test/loaders/all.mjs",
Expand Down Expand Up @@ -73,6 +73,7 @@
"test": "mocha 'test/**/*.{coffee,ts}'"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
".": ["dist/esm/index.d.ts"],
Expand Down
3 changes: 2 additions & 1 deletion packages/csv-parse/package.json
Expand Up @@ -67,7 +67,7 @@
],
"homepage": "https://csv.js.org/parse/",
"license": "MIT",
"main": "./dist/cjs",
"main": "./dist/cjs/index.cjs",
"mocha": {
"inline-diffs": true,
"loader": "./test/loaders/all.mjs",
Expand Down Expand Up @@ -97,6 +97,7 @@
"test": "mocha 'test/**/*.{coffee,ts}'"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
".": ["dist/esm/index.d.ts"],
Expand Down
3 changes: 2 additions & 1 deletion packages/csv-stringify/package.json
Expand Up @@ -43,7 +43,7 @@
],
"homepage": "https://csv.js.org/stringify/",
"license": "MIT",
"main": "./dist/cjs",
"main": "./dist/cjs/index.cjs",
"mocha": {
"inline-diffs": true,
"loader": "./test/loaders/all.mjs",
Expand Down Expand Up @@ -73,6 +73,7 @@
"test": "mocha 'test/**/*.{coffee,ts}'"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
".": ["dist/esm/index.d.ts"],
Expand Down
3 changes: 2 additions & 1 deletion packages/csv/package.json
Expand Up @@ -61,7 +61,7 @@
"samples"
],
"license": "MIT",
"main": "./dist/cjs",
"main": "./dist/cjs/index.cjs",
"mocha": {
"inline-diffs": true,
"loader": "./test/loaders/all.mjs",
Expand Down Expand Up @@ -91,6 +91,7 @@
"test": "mocha 'test/**/*.{coffee,ts}'"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
".": ["dist/esm/index.d.ts"],
Expand Down
3 changes: 2 additions & 1 deletion packages/stream-transform/package.json
Expand Up @@ -43,7 +43,7 @@
],
"homepage": "https://csv.js.org/transform/",
"license": "MIT",
"main": "./dist/cjs",
"main": "./dist/cjs/index.cjs",
"mocha": {
"inline-diffs": true,
"loader": "./test/loaders/all.mjs",
Expand Down Expand Up @@ -73,6 +73,7 @@
"test": "mocha 'test/**/*.{coffee,ts}'"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
".": ["dist/esm/index.d.ts"],
Expand Down

0 comments on commit dbfeb78

Please sign in to comment.