From cdeaa5fcac8f03ebe702bab8a39b222785c613a4 Mon Sep 17 00:00:00 2001 From: Lucas Stoque Date: Tue, 10 Jul 2018 17:01:47 -0300 Subject: [PATCH] feat: Add .env.development, .env.testing, .env.staging, .env-production to supported filenames (#225) --- src/icons/partials/fileNames.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/icons/partials/fileNames.js b/src/icons/partials/fileNames.js index 814445a..7cdede2 100644 --- a/src/icons/partials/fileNames.js +++ b/src/icons/partials/fileNames.js @@ -66,6 +66,10 @@ ".editorconfig": "_file_settings", "procfile": "_file_procfile", ".env": "_file_tune", + ".env.development": "_file_tune", + ".env.testing": "_file_tune", + ".env.staging": "_file_tune", + ".env.production": "_file_tune", "dockerfile": "_file_docker", "license": "_file_license", "license.md": "_file_license",