Skip to content

Commit b8d4bba

Browse files
committed
Move sort plugins to parent
1 parent 2e61e9b commit b8d4bba

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

packages/plugin/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export * from './PluginsContext';
22
export * from './PluginTypes';
33
export * from './PluginUtils';
4-
export * from './pluginSortUtil';
4+
export * from './sortPluginsByDependency';
55
export * from './TablePlugin';
66
export * from './useCustomThemes';
77
export * from './useDashboardPlugins';

packages/plugin/src/pluginSortUtil/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/plugin/src/pluginSortUtil/sortPluginsByDependency.test.ts renamed to packages/plugin/src/sortPluginsByDependency.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { sortPluginsByDependency } from './sortPluginsByDependency';
2-
import { type PluginManifestPluginInfo } from '../PluginUtils';
2+
import { type PluginManifestPluginInfo } from './PluginUtils';
33

44
function makeManifestPlugin(
55
name: string,

packages/plugin/src/pluginSortUtil/sortPluginsByDependency.ts renamed to packages/plugin/src/sortPluginsByDependency.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Log from '@deephaven/log';
2-
import { type PluginManifestPluginInfo } from '../PluginUtils';
2+
import { type PluginManifestPluginInfo } from './PluginUtils';
33

44
const log = Log.module('@deephaven/plugin.sortPluginsByDependency');
55

0 commit comments

Comments
 (0)