UNPKG

mlproj-core

Version:

Project management for MarkLogic, core implementation

31 lines (27 loc) 913 B
"use strict"; (function() { const action = require('./src/action'); const cmd = require('./src/commands'); const err = require('./src/error'); const env = require('./src/environ'); const prj = require('./src/project'); const ctxt = require('./src/context'); module.exports = { Context : ctxt.Context, Display : ctxt.Display, Platform : ctxt.Platform, FakeEnviron : env.FakeEnviron, Environ : env.Environ, Project : prj.Project, NewCommand : cmd.NewCommand, ShowCommand : cmd.ShowCommand, InitCommand : cmd.InitCommand, SetupCommand : cmd.SetupCommand, LoadCommand : cmd.LoadCommand, DeployCommand : cmd.DeployCommand, RunCommand : cmd.RunCommand, error : err, actions : action } } )();