From 8f787c6ee1b1f920f326141fab952782357e2c00 Mon Sep 17 00:00:00 2001 From: rharkor Date: Tue, 3 Sep 2024 19:13:21 +0200 Subject: [PATCH] fix: .gitignore --- packages/cli/.npmignore | 3 ++- packages/cli/assets/plugins/gitignore/default/config.json | 2 +- .../gitignore/default/{.gitignore => default.gitignore} | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename packages/cli/assets/plugins/gitignore/default/{.gitignore => default.gitignore} (100%) diff --git a/packages/cli/.npmignore b/packages/cli/.npmignore index 22437057..c61c8f5c 100644 --- a/packages/cli/.npmignore +++ b/packages/cli/.npmignore @@ -4,4 +4,5 @@ ./prettier.config.js ./tsconfig.json ./turbo.json -!dist/app/**/* \ No newline at end of file +!dist/app/**/* +!assets/**/* \ No newline at end of file diff --git a/packages/cli/assets/plugins/gitignore/default/config.json b/packages/cli/assets/plugins/gitignore/default/config.json index bc5d8761..8a1db7cd 100644 --- a/packages/cli/assets/plugins/gitignore/default/config.json +++ b/packages/cli/assets/plugins/gitignore/default/config.json @@ -4,7 +4,7 @@ "description": "Default gitignore configuration", "paths": [ { - "from": ".gitignore", + "from": "default.gitignore", "to": ".gitignore" } ] diff --git a/packages/cli/assets/plugins/gitignore/default/.gitignore b/packages/cli/assets/plugins/gitignore/default/default.gitignore similarity index 100% rename from packages/cli/assets/plugins/gitignore/default/.gitignore rename to packages/cli/assets/plugins/gitignore/default/default.gitignore