From f7d8e61c4b4caab2623b208ad33a4db492700ad7 Mon Sep 17 00:00:00 2001 From: Jonathan Ferreira <44679989+Jonathansoufer@users.noreply.github.com> Date: Wed, 10 Jul 2024 15:48:18 +0100 Subject: [PATCH] chore: disable snaps feat from main temporarily (#10278) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## **Description** This PR disable preinstalled-snaps from main build since no feature will be using it at this point. The first feature relying on preinstalled-snap (signing-snap) is notifications, which is not part of the current release. ## **Related issues** Fixes: ## **Manual testing steps** N/A ## **Screenshots/Recordings** ### **Before** ### **After** ## **Pre-merge author checklist** - [x] I’ve followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [x] I've completed the PR template to the best of my ability - [x] I’ve included tests if applicable - [x] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [x] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [x] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [x] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --- metro.transform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metro.transform.js b/metro.transform.js index 0fc4f1dc32f..63c7cc5a4de 100644 --- a/metro.transform.js +++ b/metro.transform.js @@ -19,7 +19,7 @@ const availableFeatures = new Set([ 'beta', ]); -const mainFeatureSet = new Set(['preinstalled-snaps']); +const mainFeatureSet = new Set([]); const flaskFeatureSet = new Set([ 'flask', 'preinstalled-snaps',