Skip to content

Commit

Permalink
removed unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
ElenaDiachenko committed Jul 24, 2024
1 parent e5fe7a6 commit 8adb036
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/engine-core/src/tasks/global/taskInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default createTask({
isGlobalScope: true,
});

export const _checkAndConfigureSdks = async () => {
const _checkAndConfigureSdks = async () => {
const moduleConfigs = [
{ moduleName: 'sdk-tizen', configureFunction: 'checkAndConfigureTizenSdks' },
{ moduleName: 'sdk-webos', configureFunction: 'checkAndConfigureWebosSdks' },
Expand All @@ -26,7 +26,7 @@ export const _checkAndConfigureSdks = async () => {
}
};

export const _checkAndConfigureTargetSdk = async (moduleName: string, configureFunction: string): Promise<void> => {
const _checkAndConfigureTargetSdk = async (moduleName: string, configureFunction: string): Promise<void> => {
try {
const SDKModule = require(`@rnv/${moduleName}`);
await SDKModule[configureFunction]();
Expand All @@ -35,7 +35,7 @@ export const _checkAndConfigureTargetSdk = async (moduleName: string, configureF
}
};

export const _getCliVersions = async (parsedInfo: any) => {
const _getCliVersions = async (parsedInfo: any) => {
const c = getContext();
const cliVersions: { [key: string]: { version: string; path: string } } = {};

Expand All @@ -61,7 +61,7 @@ export const _getCliVersions = async (parsedInfo: any) => {
parsedInfo.CLI = cliVersions;
}
};
export const _formatObject = (obj: any, indent = 0) => {
const _formatObject = (obj: any, indent = 0) => {
let formattedString = '';
if (indent === 0) formattedString += '\n';
for (const key in obj) {
Expand Down

0 comments on commit 8adb036

Please sign in to comment.