Skip to content

Commit

Permalink
fix: (strf-8740) fix a typo in StencilStart.assembleTemplates()
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGenash committed Oct 12, 2020
1 parent aec7bd1 commit 7f58d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stencil-start.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class StencilStart {
assembleTemplates(templatesPath, callback) {
recursiveRead(templatesPath, ['!*.html'], (err, files) => {
const templateNames = files.map((file) =>
file.replace(templatesPath + templatesPath.sep, '').replace('.html', ''),
file.replace(templatesPath + path.sep, '').replace('.html', ''),
);

async.map(
Expand Down

0 comments on commit 7f58d48

Please sign in to comment.