From 79c0d158f3ee567bf7012fe73b0dedf841e2acd7 Mon Sep 17 00:00:00 2001 From: JesseBrault0709 <62299747+JesseBrault0709@users.noreply.github.com> Date: Thu, 16 Feb 2023 14:11:57 +0100 Subject: [PATCH] TODO.md --- TODO.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 TODO.md diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..45d4d52 --- /dev/null +++ b/TODO.md @@ -0,0 +1,19 @@ +# TODO + +Here will be kept all of the various todos for this project, organized by release. + +## Next + +### Add +- [ ] Add some kind of `outputs` map to dsl that can be used to retrieve various info about another output of the current build. For example: + ```groovy + // while in a special page 'special.gsp' we could get the 'output' info for a text 'blog/post.md' + def post = outputs['blog/post.md'] + assert post instanceof Output // or something + assert post.path == 'blog/post.md' + assert post.targetPath = 'blog/post.html' + // as well as some other information, perhaps such as the Type, extension, *etc.* + ``` +- [ ] Add `extensionUtil` object to dsl. + +### Fix