Summary: Rename first batch for '.ts' files to '.tsx' Reviewed By: passy Differential Revision: D33843245 fbshipit-source-id: 28fd161e258e4d20200620b083aea48f9e58ea64
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import path from 'path';
|
|
import {homedir} from 'os';
|
|
import fs from 'fs-extra';
|
|
import pFilter from 'p-filter';
|
|
|
|
const flipperDataDir = path.join(homedir(), '.flipper');
|
|
|
|
export const legacyPluginInstallationDir = path.join(
|
|
flipperDataDir,
|
|
'thirdparty',
|
|
);
|
|
|
|
export const pluginInstallationDir = path.join(
|
|
flipperDataDir,
|
|
'installed-plugins',
|
|
);
|
|
|
|
export const pluginCacheDir = path.join(flipperDataDir, 'plugins');
|
|
|
|
export async function getPluginSourceFolders(): Promise<string[]> {
|
|
const pluginFolders: string[] = [];
|
|
if (process.env.FLIPPER_NO_DEFAULT_PLUGINS) {
|
|
console.log(
|
|
'🥫 Skipping default plugins because "--no-default-plugins" flag provided',
|
|
);
|
|
return pluginFolders;
|
|
}
|
|
const flipperConfigPath = path.join(homedir(), '.flipper', 'config.json');
|
|
if (await fs.pathExists(flipperConfigPath)) {
|
|
const config = await fs.readJson(flipperConfigPath);
|
|
if (config.pluginPaths) {
|
|
pluginFolders.push(...config.pluginPaths);
|
|
}
|
|
}
|
|
pluginFolders.push(path.resolve(__dirname, '..', '..', 'plugins', 'public'));
|
|
pluginFolders.push(path.resolve(__dirname, '..', '..', 'plugins', 'fb'));
|
|
return pFilter(pluginFolders, (p) => fs.pathExists(p));
|
|
}
|
|
|
|
export function getPluginInstallationDir(name: string) {
|
|
return path.join(
|
|
pluginInstallationDir,
|
|
getPluginDirNameFromPackageName(name),
|
|
);
|
|
}
|
|
|
|
export function getPluginVersionInstallationDir(
|
|
name: string,
|
|
version: string,
|
|
): string {
|
|
return path.join(getPluginInstallationDir(name), version);
|
|
}
|
|
|
|
export function getPluginDirNameFromPackageName(name: string) {
|
|
return name.replace('/', '__');
|
|
}
|