feat: new icons for eas files#3425
Open
ViniDevBR wants to merge 1 commit intomaterial-extensions:mainfrom
Open
feat: new icons for eas files#3425ViniDevBR wants to merge 1 commit intomaterial-extensions:mainfrom
ViniDevBR wants to merge 1 commit intomaterial-extensions:mainfrom
Conversation
Contributor
PreviewThank you for creating a pull request. This preview shows you how your icons will look on the different themes: Check how your icons fit in a 16x16 grid with our Pixel Perfect Checker by following this link. You can find more information on how to contribute in the contribution guidelines. |
Contributor
Author
|
@PKief now its ready hahaha, sorry |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds icon support for Expo Application Services (EAS) config artifacts to improve recognizability in the VS Code explorer, aligning the theme with common React Native/Expo workflows.
Changes:
- Added a cloned folder icon mapping for the EAS directory (
.eas). - Added file icon associations for
eas.jsonand.easignore. - Introduced Expo SVG assets (dark + light) used by the new associations.
Reviewed changes
Copilot reviewed 2 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
src/core/icons/folderIcons.ts |
Adds folder-eas mapping and clones from folder-expo with a gray tint. |
src/core/icons/fileIcons.ts |
Associates eas.json / .easignore with an icon entry (currently named expo) and enables light variant. |
icons/expo.svg |
Adds/updates the Expo icon asset for default (dark theme) rendering. |
icons/expo_light.svg |
Adds/updates the Expo icon asset for light theme rendering. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
EAS is currently one of the most important tools in the React Native ecosystem, providing a complete solution for building, deploying, and managing apps.
When building apps, there are some files that do not affect the build process. To handle this, we use:
This file works similarly to .gitignore, allowing us to exclude unnecessary files from the build upload, improving performance and reducing build size.
EAS also provides a built-in CI/CD system, which uses the following folder:
This folder can store cache and project-specific configuration used during builds.
Additionally, we define environment variables and build profiles using:
This file is responsible for configuring different build environments (such as development, preview, and production), as well as platform-specific settings and distribution options.
Closed #3423
Issue #3164
Contribution Guidelines