Skip to content

Commit

Permalink
Make sure compatible with node.js any version
Browse files Browse the repository at this point in the history
  • Loading branch information
koresar committed Sep 30, 2021
1 parent 76716c4 commit 9c2a96b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,4 @@ dist

package-lock.json
.npmrc
.idea
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
"version": "1.4.0",
"description": "Mini 1k module for CSV, TSV, PSV file manipulations",
"source": "src/lil-csv.js",
"main": "dist/lil-csv.js",
"exports": "./dist/lil-csv.modern.js",
"main": "dist/lil-csv.umd.js",
"exports": {
".": {
"require": "./dist/lil-csv.umd.js",
"default": "./dist/lil-csv.modern.js"
}
},
"module": "dist/lil-csv.module.js",
"unpkg": "dist/lil-csv.umd.js",
"umd:main": "dist/lil-csv.umd.js",
Expand Down

0 comments on commit 9c2a96b

Please sign in to comment.