Skip to content

Commit

Permalink
Merge pull request #7 from CartoDB/felix/fix-package
Browse files Browse the repository at this point in the history
Add exports to package.json
  • Loading branch information
felixpalmer authored Sep 14, 2022
2 parents 3480ba3 + 96aca19 commit 6993b05
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
{
"name": "quadbin",
"version": "0.1.4",
"version": "0.1.5",
"description": "Utility functions for working with Quadbins",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./*": "./*"
},
"keywords": ["quadbin", "webgl", "visualization"],
"repository": {
"type": "git",
Expand Down

0 comments on commit 6993b05

Please sign in to comment.