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
I downloaded the v1.15.3 release and did:
npm install npm run build
Then included the twig.js file in a website to be used in the browser. When I do alert(Twig.VERSION); I get 1.14.0 alerted out.
alert(Twig.VERSION);
1.14.0
Am I misunderstanding what this version is, or does it need updating somewhere?
The following code is in twig.js around line 460 so I guess it needs updating there?
// ## twig.factory.js // // This file handles creating the Twig library module.exports = function factory() { var Twig = { VERSION: '1.14.0' };
Apologies if I'm misunderstanding! Thanks.
The text was updated successfully, but these errors were encountered:
Whoops! Good catch!
Sorry, something went wrong.
@BT643 keeping the internal Twig.VERSION in sync with the npm releases is a known issue. Efforts to automate the process can be tracked on #569.
Twig.VERSION
No branches or pull requests
I downloaded the v1.15.3 release and did:
Then included the twig.js file in a website to be used in the browser. When I do
alert(Twig.VERSION);
I get1.14.0
alerted out.Am I misunderstanding what this version is, or does it need updating somewhere?
The following code is in twig.js around line 460 so I guess it needs updating there?
Apologies if I'm misunderstanding! Thanks.
The text was updated successfully, but these errors were encountered: