From 26387703c9faf1dab07e2ce61ef60ca377956620 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Tue, 28 Nov 2023 12:40:43 +0100 Subject: [PATCH] MOBILE-3947 gulp: Fix minimatch import in build-behat-plugin --- scripts/build-behat-plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-behat-plugin.js b/scripts/build-behat-plugin.js index 52ec0d259..01e8c1b65 100755 --- a/scripts/build-behat-plugin.js +++ b/scripts/build-behat-plugin.js @@ -14,7 +14,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -const minimatch = require('minimatch'); +const { minimatch } = require('minimatch'); const { existsSync, readFileSync, writeFileSync, statSync, renameSync, rmSync } = require('fs'); const { readdir } = require('fs').promises; const { mkdirSync, copySync } = require('fs-extra');