diff --git a/.gitignore b/.gitignore index 2221a37..f2ab6ab 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ pnpm-debug.log* lerna-debug.log* node_modules -dist dist-ssr *.local diff --git a/examples/app/dist/.gitignore b/examples/app/dist/.gitignore new file mode 100644 index 0000000..df24eb8 --- /dev/null +++ b/examples/app/dist/.gitignore @@ -0,0 +1,5 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore +# This is done so that Tauri never complains that '../dist does not exist' \ No newline at end of file diff --git a/examples/custom-plugin/app/.gitignore b/examples/custom-plugin/app/.gitignore deleted file mode 100644 index 76add87..0000000 --- a/examples/custom-plugin/app/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules -dist \ No newline at end of file diff --git a/examples/custom-plugin/app/dist/.gitignore b/examples/custom-plugin/app/dist/.gitignore new file mode 100644 index 0000000..df24eb8 --- /dev/null +++ b/examples/custom-plugin/app/dist/.gitignore @@ -0,0 +1,5 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore +# This is done so that Tauri never complains that '../dist does not exist' \ No newline at end of file