We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following cannot be parsed: "${file(${env:FILE_PATH}/config.global.yml)}"
"${file(${env:FILE_PATH}/config.global.yml)}"
This could be fixed in a hacky way by doing something like:
if ( functionName === "file" && _arguments.length >= 1 && typeof _arguments[_arguments.length - 1] === "string" && _arguments[_arguments.length - 1].includes(path.sep) && child.value[0] === path.sep ) { let previousValue = _arguments.pop() _arguments.push(previousValue + child.value)
on line 484 of src/template-compiler/index.ts, but I imagine you'd have a more elegant solution. I'm not real good with javascript/typescript.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following cannot be parsed:
"${file(${env:FILE_PATH}/config.global.yml)}"
This could be fixed in a hacky way by doing something like:
on line 484 of src/template-compiler/index.ts, but I imagine you'd have a more elegant solution. I'm not real good with javascript/typescript.
The text was updated successfully, but these errors were encountered: