From 8f820aad6429e7ae5ad1578ae99ed0afbafab6c1 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Sun, 2 Nov 2025 01:55:33 +0100 Subject: [PATCH] add rule example --- config-TEMPLATE.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config-TEMPLATE.yaml b/config-TEMPLATE.yaml index bab9978..2ca8da2 100644 --- a/config-TEMPLATE.yaml +++ b/config-TEMPLATE.yaml @@ -16,7 +16,11 @@ copy_rules: # Wildcard (.*) copy with specific target path - source: './source_directory/.*.js' target: './target_directory/js_files' - + + # copy and replace with wildcard (e.g. filename with hash) + - source: './source_directory/filename.js' + target: './target_directory/filename*.js' + mode: 'replace' # Overwrites existing files/folders - sources: