Skip to content

Commit 1396634

Browse files
committed
fix: add missing configPlugin keyword normalization
1 parent 0a3e4fe commit 1396634

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ and performing actions related to the chosen package inside the built-in editor
3030

3131
* Search through the packages registered in the React Native Directory.
3232
* Narrow down the results by using filter tokens, such as `:ios`, `:newArchitecture`, or `:hasTypes`.
33-
* Valid tokens are a subset of all possible API query options, and the values can be seen [in this file](/src/utils.ts#L30-L51).
33+
* Valid tokens are a subset of all possible API query options, and the values can be seen [in this file](/src/utils.ts#L33-L55).
3434
* Install the selected packages in the current workspace using your preferred package manager.
3535
* Dive deep into the stats and analysis with the provided metadata and links.
3636

src/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export const VALID_KEYWORDS_MAP = {
5050
ismaintained: 'isMaintained',
5151
ispopular: 'isPopular',
5252
wasrecentlyupdated: 'wasRecentlyUpdated',
53-
newarchitecture: 'newArchitecture'
53+
newarchitecture: 'newArchitecture',
54+
configplugin: 'configPlugin'
5455
};
5556
export type ValidKeyword = keyof typeof VALID_KEYWORDS_MAP;
5657

0 commit comments

Comments
 (0)