fix(#964): Allow "." in variable names + make error message more consistent

This commit is contained in:
Nelu Platonov
2023-11-15 16:27:14 +01:00
parent f617504cd6
commit 2ee6c5effc
4 changed files with 6 additions and 11 deletions

View File

@@ -1 +1 @@
export const envVariableNameRegex = /^(?!\d)[\w-]*$/;
export const envVariableNameRegex = /^(?!\d)[\w-.]*$/;