aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/compositor/cli.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/compositor/cli.lux')
-rw-r--r--stdlib/source/program/compositor/cli.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/program/compositor/cli.lux b/stdlib/source/program/compositor/cli.lux
index f0fdb80be..394869517 100644
--- a/stdlib/source/program/compositor/cli.lux
+++ b/stdlib/source/program/compositor/cli.lux
@@ -13,25 +13,25 @@
[world
[file (#+ Path)]]]])
-(type: #export Source
+(type: .public Source
Path)
-(type: #export Host_Dependency
+(type: .public Host_Dependency
Path)
-(type: #export Library
+(type: .public Library
Path)
-(type: #export Target
+(type: .public Target
Path)
-(type: #export Compilation
+(type: .public Compilation
[(List Source) (List Host_Dependency) (List Library) Target Module])
-(type: #export Export
+(type: .public Export
[(List Source) Target])
-(type: #export Service
+(type: .public Service
(#Compilation Compilation)
(#Interpretation Compilation)
(#Export Export))
@@ -48,7 +48,7 @@
[module_parser "--module" Module]
)
-(def: #export service
+(def: .public service
(Parser Service)
($_ <>.or
(<>.after (cli.this "build")
@@ -71,7 +71,7 @@
..target_parser))
))
-(def: #export target
+(def: .public target
(-> Service Target)
(|>> (case> (^or (#Compilation [sources host_dependencies libraries target module])
(#Interpretation [sources host_dependencies libraries target module])