Skip to content

Commit

Permalink
refactor: 调整目录
Browse files Browse the repository at this point in the history
  • Loading branch information
aooiuu committed May 11, 2024
1 parent 7458e71 commit 6758b92
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions packages/vscode/src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import { CONSTANTS } from '@any-reader/shared';
import { BookChapter, checkDir } from '@any-reader/shared/localBookManager';
import * as localBookManager from '@any-reader/shared/localBookManager';
import { COMMANDS, BOOK_SOURCE_PATH } from './constants';
import bookProvider from './treeview/book';
import historyProvider from './treeview/history';
import sourceProvider from './treeview/source';
import favoritesProvider from './treeview/favorites';
import localProvider from './treeview/localBook';
import bookManager from './treeview/bookManager';
import { treeItemDecorationProvider } from './treeview/TreeItemDecorationProvider';
import { webviewProvider } from './treeview/webviewProvider';
import bookProvider from './sidebar/book';
import historyProvider from './sidebar/history';
import sourceProvider from './sidebar/source';
import favoritesProvider from './sidebar/favorites';
import localProvider from './sidebar/localBook';
import bookManager from './sidebar/bookManager';
import { treeItemDecorationProvider } from './sidebar/TreeItemDecorationProvider';
import { webviewProvider } from './sidebar/webviewProvider';
import * as ruleFileManager from './utils/ruleFileManager';
import historyManager from './utils/historyManager';
import favoritesManager from './utils/favoritesManager';
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/vscode/src/webview/WebviewEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import * as localBookManager from '@any-reader/shared/localBookManager';
import { COMMANDS } from '../constants';
import * as ruleFileManager from '../utils/ruleFileManager';
import { createAdapter } from '../utils/easyPostMessage';
import favoritesProvider from '../treeview/favorites';
import favoritesProvider from '../sidebar/favorites';
import favoritesManager from '../utils/favoritesManager';

function success(data: any, msg = '') {
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/src/webview/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ContentType } from '@any-reader/core';
import type { BookChapter } from '@any-reader/shared/localBookManager';
import * as localBookManager from '@any-reader/shared/localBookManager';
import { sleep } from '../utils/sleep';
import bookManager, { TreeNode } from '../treeview/bookManager';
import bookManager, { TreeNode } from '../sidebar/bookManager';
import { WebviewEvent } from './WebviewEvent';
import { getWebViewContent } from '../utils/webview';

Expand Down

0 comments on commit 6758b92

Please sign in to comment.