From 5081618151de09727b852626a141993579cd7fd8 Mon Sep 17 00:00:00 2001 From: Tommaso Barbugli Date: Tue, 6 Jun 2023 11:51:28 +0200 Subject: [PATCH] api --- constants.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/constants.js b/constants.js index cbae286..8282e9b 100644 --- a/constants.js +++ b/constants.js @@ -5,7 +5,7 @@ const folderMapping = { react: 'React', reactnative: 'React Native', angular: 'Angular', - platform: 'Platform Capabilities', + api: 'API', overview: 'Features Overview', }; @@ -17,7 +17,7 @@ const platformMapping = { reactnative: 'react-native', angular: 'angular', overview: 'overview', - platform: 'platform', + api: 'api', }; const languageMapping = { @@ -27,6 +27,7 @@ const languageMapping = { react: 'javascript', reactnative: 'javascript', angular: 'javascript', + api: 'javascript', }; const DOCUSAURUS_INDEX = @@ -37,13 +38,13 @@ const IGNORED_DIRECTORIES = ['common-content']; const SDK_ORDER = [ 'Overview', - 'Platform', 'react', 'ios', 'android', 'reactnative', 'flutter', 'angular', + 'api', ]; module.exports = {