Greg Shuflin
d5ebc9515e
Allow [doc]
annotation on modules ( #2247 )
2024-07-14 22:15:22 -07:00
Casey Rodarmor
241e7b46a5
Fix function argument count mismatch error message ( #2231 )
2024-07-07 04:19:36 +00:00
Greg Shuflin
38873dcb74
Allow unexporting environment variables ( #2098 )
2024-06-05 20:16:47 +00:00
Greg Shuflin
ed0dc20318
Add recipe groups ( #1842 )
2024-05-25 07:32:25 +00:00
Casey Rodarmor
b1c7491486
Add shell-expanded strings ( #2055 )
2024-05-19 05:41:38 +00:00
Marc
8bd411de45
Allow setting custom confirm prompt ( #1834 )
2024-01-13 02:44:13 +00:00
Casey Rodarmor
316ea01295
Add modules ( #1782 )
2023-12-28 04:27:15 +00:00
Casey Rodarmor
86dbed7445
Display a descriptive error for !include
directives ( #1779 )
2023-12-24 17:14:17 +00:00
Casey Rodarmor
e9bec8d398
Stabilize !include path
as import 'path'
( #1771 )
2023-12-20 12:31:51 +08:00
Greg Shuflin
f745316e88
Move !include processing into compiler ( #1618 )
2023-11-21 11:28:59 -08:00
Casey Rodarmor
af54dafa77
Allow recipe parameters to shadow variables ( #1480 )
2023-01-10 00:59:02 +00:00
Greg Shuflin
fbe1c4c7a3
Allow private attribute on aliases ( #1434 )
2022-12-20 00:44:19 -08:00
Casey Rodarmor
73777f7183
Add OS Configuration Attributes ( #1387 )
2022-10-31 00:52:03 -07:00
Gökhan Karabulut
8b7640b633
Add [no-exit-message] recipe annotation ( #1354 )
...
When a recipe wraps cli tool and the tool exits with a non-zero code,
just adds its own extra exit error message along with the messages
from the tool. Introduce the `[no-exit-message]` attribute to suppress
this additional message.
2022-10-25 16:32:36 -07:00
Nick Kocharhook
e1f729efbc
Improve error message if if
is missing the else
( #1252 )
2022-06-30 10:34:11 +00:00
Evan Richter
bfceb8f9c9
Prevent unbounded recursion when parsing expressions ( #1248 )
2022-06-22 15:00:13 -07:00
Casey Rodarmor
01fae9b1e4
Do use super::*;
instead of use crate::common::*;
( #1239 )
2022-06-19 04:56:31 +00:00
Casey Rodarmor
58a196f434
Make join
accept two or more arguments ( #1000 )
2021-10-15 00:00:58 +00:00
Casey Rodarmor
39301e9f8b
Remove deprecated equals error ( #985 )
2021-10-02 01:37:28 +00:00
Casey Rodarmor
629c75ff04
Use stable rustfmt instead of nightly ( #967 )
2021-09-16 13:44:40 +00:00
Casey Rodarmor
1b0fafea75
Add loader and refactor errors ( #917 )
...
This commit adds a `Loader` type, which can be used to load multiple
source strings. This was done to support the work on modules, but
coincidentally enabled consolidating errors, since now `Config::run`
can take a `&Loader`, and in the event of an error, return and `Error`
that borrows from loaded strings. Multiple error types have been
consolidated, and a bunch of ad-hoc error printing was removed.
2021-07-26 01:26:06 -07:00