diff options
author | MichaĆ Wolny <FreexD@users.noreply.github.com> | 2021-04-10 16:14:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-10 16:14:40 +0200 |
commit | 7568a13676ac818088e28753c110f2152f3e8377 (patch) | |
tree | ea4ed680e931dd25e5b61d6c52a5c4af64306091 | |
parent | Update README.md (diff) | |
parent | Fix build config (diff) | |
download | tabler-icons-7568a13676ac818088e28753c110f2152f3e8377.tar.xz |
Merge pull request #116 from adambrgmn/build-update
Update package exports and peer dependencies
-rw-r--r-- | package.json | 8 | ||||
-rw-r--r-- | rollup.config.js | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/package.json b/package.json index 56f9c6cf..1f1fa7fa 100644 --- a/package.json +++ b/package.json @@ -6,8 +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", "module": "./icons-react/dist/index.esm.js", - "browser": "./icons-react/dist/index.umd.js", + "unpkg": "./icons-react/dist/index.umd.js", + "umd:main": "./icons-react/dist/index.umd.js", "types": "./icons-react/index.d.ts", "sideEffects": false, "author": "codecalm", @@ -97,7 +99,7 @@ } }, "peerDependencies": { - "react": "^16.13.1", - "react-dom": "^16.13.1" + "react": "^16.x || 17.x", + "react-dom": "^16.x || 17.x" } } diff --git a/rollup.config.js b/rollup.config.js index bfcf4f3e..82785cd2 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -83,7 +83,7 @@ export default [ { input, output: { - file: minifyExtension(pkg.browser), + file: minifyExtension(pkg['umd:main']), format: "umd", sourcemap: true, name: "tablerIcons", |