You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// A single file was passed in. We need to test if the file satisfies the codify file regex
42
56
if(!isDirectory){
43
57
constfileName=path.basename(dirOrFile);
44
-
if(!CODIFY_FILE_REGEX.test(fileName)){
58
+
if(!config.codifyFileRegex.test(fileName)){
45
59
thrownewError(`Invalid file path provided ${dirOrFile}${fileName}. Expected the file to be *.codify.jsonc, *.codify.json5, *.codify.json, or *.codify.yaml `)
0 commit comments