1
0
mirror of https://github.com/tabler/tabler-icons.git synced 2025-01-17 12:48:26 +01:00

Merge pull request #131 from tabler/dev-node-exports

Fix exports for node (next)
This commit is contained in:
Michał Wolny 2021-05-02 12:17:21 +02:00 committed by GitHub
commit 908e2ae849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,10 @@
"url": "git+https://github.com/tabler/tabler-icons.git"
},
"main": "./icons-react/dist/index.cjs.js",
"exports": "./icons-react/dist/index.esm.js",
"exports": {
"import": "./icons-react/dist/index.esm.js",
"require": "./icons-react/dist/index.cjs.js"
},
"module": "./icons-react/dist/index.esm.js",
"unpkg": "./icons-react/dist/index.umd.js",
"umd:main": "./icons-react/dist/index.umd.js",