From d53ebf5d85a30500a8256ab4197a173083275b64 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 20 Mar 2018 08:33:12 +0100 Subject: [PATCH] Fix .gitignore files --- lexik/jwt-authentication-bundle/2.3/manifest.json | 2 +- symfony/framework-bundle/3.3/manifest.json | 6 +++--- symfony/web-server-bundle/3.3/manifest.json | 2 +- symfony/webpack-encore-pack/1.0/manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lexik/jwt-authentication-bundle/2.3/manifest.json b/lexik/jwt-authentication-bundle/2.3/manifest.json index 47c46bb0..1e5320d9 100644 --- a/lexik/jwt-authentication-bundle/2.3/manifest.json +++ b/lexik/jwt-authentication-bundle/2.3/manifest.json @@ -13,6 +13,6 @@ "JWT_PASSPHRASE": "%generate(secret)%" }, "gitignore": [ - "%CONFIG_DIR%/jwt/*.pem" + "/%CONFIG_DIR%/jwt/*.pem" ] } diff --git a/symfony/framework-bundle/3.3/manifest.json b/symfony/framework-bundle/3.3/manifest.json index f7b75c01..6de1012a 100644 --- a/symfony/framework-bundle/3.3/manifest.json +++ b/symfony/framework-bundle/3.3/manifest.json @@ -18,9 +18,9 @@ "#TRUSTED_HOSTS": "localhost,example.com" }, "gitignore": [ - ".env", - "/public/bundles/", - "/var/", + "/.env", + "/%PUBLIC_DIR%/bundles/", + "/%VAR_DIR%/", "/vendor/" ] } diff --git a/symfony/web-server-bundle/3.3/manifest.json b/symfony/web-server-bundle/3.3/manifest.json index 331a377e..f32f2ce5 100644 --- a/symfony/web-server-bundle/3.3/manifest.json +++ b/symfony/web-server-bundle/3.3/manifest.json @@ -3,7 +3,7 @@ "Symfony\\Bundle\\WebServerBundle\\WebServerBundle": ["dev"] }, "gitignore": [ - ".web-server-pid" + "/.web-server-pid" ], "aliases": ["web-server", "server"] } diff --git a/symfony/webpack-encore-pack/1.0/manifest.json b/symfony/webpack-encore-pack/1.0/manifest.json index 937ecdc1..4af8cb61 100644 --- a/symfony/webpack-encore-pack/1.0/manifest.json +++ b/symfony/webpack-encore-pack/1.0/manifest.json @@ -7,6 +7,6 @@ "aliases": ["encore", "webpack", "webpack-encore"], "gitignore": [ "/node_modules/", - "/public/build/" + "/%PUBLIC_DIR%/build/" ] }