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
There's a problem with mapping component name to template url.
By default
function dashCase(str) {
return str.replace(/([A-Z])/g, function ($1) {
return '-' + $1.toLowerCase();
});
}
causes PascalCase component to be mapped to ./components/-pascal-case/-pascal-case.html template, which is not supposed to be the correct behaviour (even if camelCase is preferable naming convention).
There's a problem with mapping component name to template url.
By default
causes
PascalCasecomponent to be mapped to./components/-pascal-case/-pascal-case.htmltemplate, which is not supposed to be the correct behaviour (even if camelCase is preferable naming convention).