Skip to content

Commit 0d0a24f

Browse files
committed
fix: Copy license to package root
1 parent d68821a commit 0d0a24f

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

packages/onboarding-modal/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ dist-ssr
2525

2626
# pnpm pack output
2727
*.tgz
28+
29+
# Ignore license as it is copied from the root
30+
LICENSE

packages/onboarding-modal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dme-onboarding-modal",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"author": "BootNode",
55
"license": "MIT",
66
"type": "module",

packages/onboarding-modal/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default defineConfig({
1818
name: "copy-files",
1919
closeBundle: () => {
2020
copyFileSync("lib/index.css", "dist/index.css");
21-
copyFileSync("../../LICENSE", "dist/LICENSE");
21+
copyFileSync("../../LICENSE", "LICENSE");
2222
},
2323
},
2424
],

0 commit comments

Comments
 (0)