diff options
| author | Alex Gleason <alex@alexgleason.me> | 2022-05-09 16:27:05 -0500 | 
|---|---|---|
| committer | Alex Gleason <alex@alexgleason.me> | 2022-05-09 16:27:05 -0500 | 
| commit | e6765bdc150f03ba536520e803327e81c3d3ba42 (patch) | |
| tree | 17474b1df6e072907eae48197cd495561b662a94 | |
| parent | Release 1.68.0 (diff) | |
| download | tabler-icons-e6765bdc150f03ba536520e803327e81c3d3ba42.tar.xz | |
package.json: export .svg and .png assets
| -rw-r--r-- | package.json | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/package.json b/package.json index bdf61b0e..d80aab7c 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,11 @@    },    "main": "./icons-react/dist/index.cjs.js",    "exports": { -    "import": "./icons-react/dist/index.esm.js", -    "require": "./icons-react/dist/index.cjs.js" +    ".": { +      "import": "./icons-react/dist/index.esm.js", +      "require": "./icons-react/dist/index.cjs.js" +    }, +    "./*": ["./icons/*", "./icons-png/*"]    },    "module": "./icons-react/dist/index.esm.js",    "unpkg": "./icons-react/dist/index.umd.js", | 
