mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Fix compiling issues
This commit is contained in:
parent
62d05b90c5
commit
446185c51d
2 changed files with 3 additions and 2 deletions
|
|
@ -39,4 +39,5 @@ esbuild.build({
|
|||
sourcemap: prod ? false : 'inline',
|
||||
treeShaking: true,
|
||||
outfile: 'main.js',
|
||||
conditions: ['types'],
|
||||
}).catch(() => process.exit(1));
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import './functions/ListComponent';
|
|||
import { handleDelete } from './events/handleDelete';
|
||||
import { addCSSClassToTitleEL, getEl, loadFileClasses, removeCSSClassFromEL } from './functions/styleFunctions';
|
||||
import { getExcludedFolder } from './ExcludeFolders/functions/folderFunctions';
|
||||
import { ClipBoardManager, FileExplorerView, InternalPlugin, InternalPluginName, InternalPlugins } from 'obsidian-typings'
|
||||
import { ClipBoardManager, FileExplorerView, InternalPlugin, InternalPlugins } from 'obsidian-typings'
|
||||
export default class FolderNotesPlugin extends Plugin {
|
||||
observer: MutationObserver;
|
||||
settings: FolderNotesSettings;
|
||||
|
|
@ -171,7 +171,7 @@ export default class FolderNotesPlugin extends Plugin {
|
|||
return originalHandleDrop.call(this, evt, ...args);
|
||||
}
|
||||
|
||||
const fileExplorerPluginInstance = this.app.internalPlugins.getEnabledPluginById(InternalPluginName.FileExplorer);
|
||||
// const fileExplorerPluginInstance = this.app.internalPlugins.getEnabledPluginById(InternalPluginName.FileExplorer);
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue