From 8d60336be53b1659e8e0a7b255a3f83fe4f52ef9 Mon Sep 17 00:00:00 2001 From: PKief Date: Sat, 9 Jun 2018 20:25:53 +0200 Subject: [PATCH] .env files for specific environments (Closes #261) --- src/icons/fileIcons.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/icons/fileIcons.ts b/src/icons/fileIcons.ts index 820cc2010f..bce1b98067 100644 --- a/src/icons/fileIcons.ts +++ b/src/icons/fileIcons.ts @@ -560,7 +560,17 @@ export const fileIcons: FileIcons = { ] }, { name: 'android', fileNames: ['androidmanifest.xml'] }, - { name: 'tune', fileNames: ['.env', '.env.example'] }, + { + name: 'tune', + fileNames: [ + '.env', + '.env.example', + '.env.local', + '.env.dev', + '.env.staging', + '.env.prod', + ] + }, { name: 'babel', fileNames: ['.babelrc', '.babelrc.js'] }, { name: 'contributing',