feat: scripts
This commit is contained in:
17
scripts/markdowndocs.js
Normal file
17
scripts/markdowndocs.js
Normal file
@@ -0,0 +1,17 @@
|
||||
#! /usr/bin/env runjs
|
||||
var System = java.lang.System;
|
||||
var LogUtil = Packages.me.hatter.tools.commons.log.LogUtil;
|
||||
var LogType = Packages.me.hatter.tools.commons.log.LogUtil.LogType;
|
||||
|
||||
LogUtil.setLogTypeSet($$.asList(LogType.ERROR, LogType.WARN, LogType.INFO, LogType.DEBUG, LogType.TRACE), true);
|
||||
|
||||
requireJAR('maven:me.hatter:markdowndocsall:1.1');
|
||||
|
||||
var main = () => {
|
||||
var Main = Packages.me.hatter.tools.markdowndocs.Main;
|
||||
Main.main($ARGS);
|
||||
};
|
||||
|
||||
main();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user