dioxus-cli 0.3.1

CLI tool for developing, testing, and publishing Dioxus apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local Api = require("./interface")
local log = Api.log;

local manager = {
    name = "Dioxus-CLI Plugin Demo",
    repository = "http://github.com/DioxusLabs/cli",
    author = "YuKun Liu <mrxzx.info@gmail.com>",
}

manager.onLoad = function ()
    log.info("plugin loaded.")
end

manager.onStartBuild = function ()
    log.warn("system start to build")
end

return manager