watchexec-cli 2.5.1

Executes commands in response to file modifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use jaq_core::{Compiler, Native};

mod file;
mod hash;
mod kv;
mod macros;
mod output;

pub fn jaq_lib<'s>() -> Compiler<&'s str, Native<jaq_json::Val>> {
	Compiler::<_, Native<_>>::default().with_funs(
		jaq_std::funs()
			.chain(jaq_json::funs())
			.chain(file::funs())
			.chain(hash::funs())
			.chain(kv::funs())
			.chain(output::funs()),
	)
}