Current section
Files
Jump to
Current section
Files
src/sketch_css.erl
-module(sketch_css).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([main/0]).
-file("/Users/doctor/Workspace/sketch/sketch_css/src/sketch_css.gleam", 12).
-spec main() -> nil.
main() ->
_pipe = glint:new(),
_pipe@1 = glint:with_name(_pipe, <<"Sketch CSS"/utf8>>),
_pipe@2 = glint:pretty_help(_pipe@1, glint:default_pretty_help()),
_pipe@3 = glint:add(
_pipe@2,
[<<"generate"/utf8>>],
sketch_css@commands@generate:css()
),
glint:run(_pipe@3, erlang:element(4, argv:load())).