Skip to content

Commit 3d0b495

Browse files
committed
[#80] Set As Side Effect Free in package.json
Problem: To become fully tree shakable, we need to add a label about side-effects Solution: `sideEffects: false` was set.
1 parent bbabe00 commit 3d0b495

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "@union-platform/ui",
33
"description": "UI-library of Union — a platform where you can find your labor of love, join a team, create something important or crazy; this is a place where you can be yourself.",
4-
"version": "0.1.36",
4+
"version": "0.1.37",
55
"private": false,
66
"main": "index.js",
77
"module": "index.mjs",
88
"license": "AGPL-3.0-or-later",
9+
"sideEffects": false,
910
"bugs": {
1011
"url": "https://github.com/union-platform/ui-kit/issues"
1112
},
@@ -29,8 +30,7 @@
2930
"library"
3031
],
3132
"publishConfig": {
32-
"access": "public",
33-
"registry":"https://npm.pkg.github.com"
33+
"access": "public"
3434
},
3535
"dependencies": {
3636
"@radix-ui/react-accessible-icon": "^0.1.3",

0 commit comments

Comments
 (0)