|
|
|
|
@ -0,0 +1,25 @@
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Volo.Abp.AspNetCore.Mvc.UI.Bundling;
|
|
|
|
|
using Volo.Abp.AspNetCore.Mvc.UI.Packages.Codemirror;
|
|
|
|
|
using Volo.Abp.AspNetCore.Mvc.UI.Packages.HighlightJs;
|
|
|
|
|
using Volo.Abp.AspNetCore.Mvc.UI.Packages.MarkdownIt;
|
|
|
|
|
using Volo.Abp.Modularity;
|
|
|
|
|
|
|
|
|
|
namespace Volo.Abp.AspNetCore.Mvc.UI.Packages.TuiEditor
|
|
|
|
|
{
|
|
|
|
|
[DependsOn(
|
|
|
|
|
typeof(HighlightJsScriptContributor),
|
|
|
|
|
typeof(CodemirrorScriptContributor),
|
|
|
|
|
typeof(MarkdownItScriptContributor)
|
|
|
|
|
)]
|
|
|
|
|
public class TuiEditorScriptContributor : BundleContributor
|
|
|
|
|
{
|
|
|
|
|
public override void ConfigureBundle(BundleConfigurationContext context)
|
|
|
|
|
{
|
|
|
|
|
context.Files.AddIfNotContains("/libs/to-mark/to-mark.min.js");
|
|
|
|
|
context.Files.AddIfNotContains("/libs/tui-code-snippet/tui-code-snippet.min.js");
|
|
|
|
|
context.Files.AddIfNotContains("/libs/squire-rte/squire.js");
|
|
|
|
|
context.Files.AddIfNotContains("/libs/tui-editor/tui-editor-Editor.min.js");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|