diff options
author | Eduardo Julian | 2022-06-13 01:55:22 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-13 01:55:22 -0400 |
commit | 289f9de576a7980184339f380d5000f7d71f6d7e (patch) | |
tree | e0ac1c14a496d6bf3139e1e3b600dde73decf208 /stdlib/source/program/aedifex/command | |
parent | 32e730e93f0a88cc537622c854a48eb229419893 (diff) |
New "format" hierarchy.
Diffstat (limited to '')
7 files changed, 11 insertions, 10 deletions
diff --git a/stdlib/source/program/aedifex/command/build.lux b/stdlib/source/program/aedifex/command/build.lux index b00f60968..168aa1971 100644 --- a/stdlib/source/program/aedifex/command/build.lux +++ b/stdlib/source/program/aedifex/command/build.lux @@ -14,7 +14,7 @@ [data ["[0]" product] ["[0]" text (.open: "[1]#[0]" order) - ["%" format (.only format)]] + ["%" \\format (.only format)]] [collection ["[0]" list (.open: "[1]#[0]" functor mix)] ["[0]" dictionary (.only Dictionary)] diff --git a/stdlib/source/program/aedifex/command/clean.lux b/stdlib/source/program/aedifex/command/clean.lux index 7798a2006..c16c517d6 100644 --- a/stdlib/source/program/aedifex/command/clean.lux +++ b/stdlib/source/program/aedifex/command/clean.lux @@ -9,7 +9,7 @@ ["[0]" async (.only Async)]]] [data [text - ["%" format (.only format)]]] + ["%" \\format (.only format)]]] [world ["[0]" file (.only Path)] ["[0]" console (.only Console)]]]] diff --git a/stdlib/source/program/aedifex/command/deploy/release.lux b/stdlib/source/program/aedifex/command/deploy/release.lux index 30cc226a4..667bbf1ee 100644 --- a/stdlib/source/program/aedifex/command/deploy/release.lux +++ b/stdlib/source/program/aedifex/command/deploy/release.lux @@ -14,16 +14,15 @@ [parser ["[0]" environment]]] [data - ["[0]" binary (.only Binary)] + [binary (.only Binary)] ["[0]" text (.only) - ["%" format] + ["%" \\format] [encoding ["[0]" utf8]]] [collection ["[0]" set] ["[0]" dictionary]] [format - ["[0]" binary] ["[0]" tar] ["[0]" xml]]] [tool diff --git a/stdlib/source/program/aedifex/command/deploy/snapshot.lux b/stdlib/source/program/aedifex/command/deploy/snapshot.lux index 1fd2c8793..37fc9a19b 100644 --- a/stdlib/source/program/aedifex/command/deploy/snapshot.lux +++ b/stdlib/source/program/aedifex/command/deploy/snapshot.lux @@ -8,13 +8,14 @@ [concurrency ["[0]" async (.only Async)]]] [data + ["[0]" binary + ["[1]" \\format]] ["[0]" text [encoding ["[0]" utf8]]] [collection ["[0]" set]] [format - ["[0]" binary] ["[0]" tar] ["[0]" xml]]] [tool diff --git a/stdlib/source/program/aedifex/command/deps.lux b/stdlib/source/program/aedifex/command/deps.lux index e113616ef..f2bc10fb1 100644 --- a/stdlib/source/program/aedifex/command/deps.lux +++ b/stdlib/source/program/aedifex/command/deps.lux @@ -13,7 +13,7 @@ ["[0]" list (.open: "[1]#[0]" mix)] ["[0]" dictionary]] [text - ["%" format]]] + ["%" \\format]]] [world [net (.only URL)] [program (.only Program)] diff --git a/stdlib/source/program/aedifex/command/install.lux b/stdlib/source/program/aedifex/command/install.lux index e6e85948c..9e624a11c 100644 --- a/stdlib/source/program/aedifex/command/install.lux +++ b/stdlib/source/program/aedifex/command/install.lux @@ -9,14 +9,15 @@ [concurrency ["[0]" async (.only Async)]]] [data - [binary (.only Binary)] + ["[0]" binary + [\ (.only Binary)] + ["[1]" \\format]] [text [encoding ["[0]" utf8]]] [collection ["[0]" set]] [format - ["[0]" binary] ["[0]" tar] ["[0]" xml]]] [tool diff --git a/stdlib/source/program/aedifex/command/pom.lux b/stdlib/source/program/aedifex/command/pom.lux index 2abff6969..7b12a095b 100644 --- a/stdlib/source/program/aedifex/command/pom.lux +++ b/stdlib/source/program/aedifex/command/pom.lux @@ -9,7 +9,7 @@ ["[0]" async (.only Async) (.open: "[1]#[0]" monad)]]] [data [text - ["%" format (.only format)] + ["%" \\format (.only format)] [encoding ["[0]" utf8]]] [format |