From 75fc97316d17abeeb0b5d649a85ec2a93fe1455c Mon Sep 17 00:00:00 2001 From: Scott Martin <32358661+scottdotjs@users.noreply.github.com> Date: Tue, 12 Apr 2022 02:39:07 +0100 Subject: [PATCH] Add path string to options signature (fixes #628) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5a83f5..385faa0 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ module.exports = { new CopyPlugin({ patterns: [ { from: "source", to: "dest" }, - { from: "other", to: "public" }, + "path/to/source", // absolute or relative, files/directories/globs - see below for examples ], options: { concurrency: 100,