From aa41d22d01a6e1cc80c0b36d7b819e2b6e9bfb6b Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Tue, 4 Jun 2024 15:49:50 +0200 Subject: [PATCH] fix: correctly export common variables --- lib/common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/common.js b/lib/common.js index afbe9cb..28aa2b5 100644 --- a/lib/common.js +++ b/lib/common.js @@ -1 +1,2 @@ -export default versionRegex = /(VERSION\s*=\s*['"])(?:(?!"|').)*(['"])/; +export const versionRegex = /(VERSION\s*=\s*['"])(?:(?!"|').)*(['"])/; +export default { versionRegex };