svelte: backend calls: make localStore import .js extension optional

This commit is contained in:
Alice Gaudon 2021-05-13 15:57:31 +02:00
parent 76fa44c245
commit c896accdfa
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ export default class SvelteViewEngine extends ViewEngine {
logger.info(canonicalName + ' > ', 'Replacing backend calls');
// Skip replace if there is no swaf export
if (!code.match(/import[ \n]+\{[ \n]*locals[ \n]*\}[ \n]+from[ \n]+["'](\.\.\/)+ts\/stores\.js["']/)) {
if (!code.match(/import[ \n]+\{[ \n]*locals[ \n]*\}[ \n]+from[ \n]+["'](\.\.\/)+ts\/stores(\.js)?["']/)) {
return {
backendCalls: [],
code: code,