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've got "Parse error on line 1:" and no files were generated for template: import {Base{{pascalCase name}}} from 'test';
import {Base{{pascalCase name}}} from 'test';
The text was updated successfully, but these errors were encountered:
Sorry about that. Can you try with a space between { and Base, and a space before the final }?
Sorry, something went wrong.
Actually this is a handlebars issue - http://handlebarsjs.com/expressions.html#whitespace-control. Fixed it the following way: import {Base{{~pascalCase name~}}} from 'test';
import {Base{{~pascalCase name~}}} from 'test';
No branches or pull requests
I've got "Parse error on line 1:" and no files were generated for template:
import {Base{{pascalCase name}}} from 'test';
The text was updated successfully, but these errors were encountered: