We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d68821a commit 0d0a24fCopy full SHA for 0d0a24f
3 files changed
packages/onboarding-modal/.gitignore
@@ -25,3 +25,6 @@ dist-ssr
25
26
# pnpm pack output
27
*.tgz
28
+
29
+# Ignore license as it is copied from the root
30
+LICENSE
packages/onboarding-modal/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "dme-onboarding-modal",
3
- "version": "0.0.5",
+ "version": "0.0.6",
4
"author": "BootNode",
5
"license": "MIT",
6
"type": "module",
packages/onboarding-modal/vite.config.ts
@@ -18,7 +18,7 @@ export default defineConfig({
18
name: "copy-files",
19
closeBundle: () => {
20
copyFileSync("lib/index.css", "dist/index.css");
21
- copyFileSync("../../LICENSE", "dist/LICENSE");
+ copyFileSync("../../LICENSE", "LICENSE");
22
},
23
24
],
0 commit comments