Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add react-native and metro icons #2171

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions icons/metro.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions icons/react-native.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/icons/fileIcons.ts
Expand Up @@ -2482,5 +2482,21 @@ export const fileIcons: FileIcons = {
],
},
{ name: 'apps-script', fileExtensions: ['gs'] },
{
name: 'metro',
fileNames: [
'metro.config.json',
'metro.config.yml',
'metro.config.yaml',
'metro.config.js',
'metro.config.mjs',
'metro.config.cjs',
'metro.config.ts'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File is not formatted via prettier

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay I'll format

]
},
{
name: 'react-native',
fileNames: ['react-native.config.js', 'react-native.config.cjs'],
}
],
};