From 5517d3b70bf1514a39693edc1d792ab83d1a0aec Mon Sep 17 00:00:00 2001 From: Darren Kelly <107671032+darrenvechain@users.noreply.github.com> Date: Wed, 29 Nov 2023 13:27:43 +0000 Subject: [PATCH] fix yarn publish (#113) * fix: extension wasn't working unless running without ssr * feat: add modal only component * fix: components for react * fix: components for react * chore: rename vewold-extensnion to veworld * fix: publish only relevant files * chore: add license to publish * add react components (#109) (#112) * fix: extension wasn't working unless running without ssr * feat: add modal only component * fix: components for react * fix: components for react * chore: rename vewold-extensnion to veworld --- packages/dapp-kit-react/LICENSE | 21 +++++++++++++++++++++ packages/dapp-kit-react/package.json | 6 ++++++ packages/dapp-kit-ui/package.json | 6 ++++++ packages/dapp-kit/LICENSE | 21 +++++++++++++++++++++ packages/dapp-kit/package.json | 6 ++++++ 5 files changed, 60 insertions(+) create mode 100644 packages/dapp-kit-react/LICENSE create mode 100644 packages/dapp-kit/LICENSE diff --git a/packages/dapp-kit-react/LICENSE b/packages/dapp-kit-react/LICENSE new file mode 100644 index 00000000..329efe3f --- /dev/null +++ b/packages/dapp-kit-react/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Vechain + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/dapp-kit-react/package.json b/packages/dapp-kit-react/package.json index 63a615ab..47cec779 100644 --- a/packages/dapp-kit-react/package.json +++ b/packages/dapp-kit-react/package.json @@ -7,6 +7,12 @@ "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "files": [ + "dist", + "package.json", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsup src/index.tsx --format esm --dts --external react", "clean": "rm -rf dist .turbo", diff --git a/packages/dapp-kit-ui/package.json b/packages/dapp-kit-ui/package.json index 80da36d3..f6e4d2c1 100644 --- a/packages/dapp-kit-ui/package.json +++ b/packages/dapp-kit-ui/package.json @@ -14,6 +14,12 @@ "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", + "files": [ + "dist", + "package.json", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsup", "clean": "rm -rf dist .turbo", diff --git a/packages/dapp-kit/LICENSE b/packages/dapp-kit/LICENSE new file mode 100644 index 00000000..329efe3f --- /dev/null +++ b/packages/dapp-kit/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Vechain + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/dapp-kit/package.json b/packages/dapp-kit/package.json index 3a0c3eba..28f75406 100644 --- a/packages/dapp-kit/package.json +++ b/packages/dapp-kit/package.json @@ -5,6 +5,12 @@ "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "files": [ + "dist", + "package.json", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "clean": "rm -rf dist .turbo",