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
running gulp watch the following error throws with the RTL support build watch script
Comparing the code in the RTL watch script with standard watch.js build, the code differs like follow:
tasks/watch.js
console.log('Change detected in site theme');lessPath=util.replaceExtension(file.path,'.less');lessPath=lessPath.replace(source.site,source.definitions);
While in the RTL watch script (tasks/rtl/watch.js), it looks like this:
console.log('Change detected in site theme');lessPath=lessPath.replace(source.site,source.definitions);lessPath=util.replaceExtension(file.path,'.less');
I worked out this issue by moving the util.replaceExtension above the replace call in my Project
The text was updated successfully, but these errors were encountered:
running gulp watch the following error throws with the RTL support build watch script
Comparing the code in the RTL watch script with standard watch.js build, the code differs like follow:
tasks/watch.js
While in the RTL watch script (tasks/rtl/watch.js), it looks like this:
I worked out this issue by moving the util.replaceExtension above the replace call in my Project
The text was updated successfully, but these errors were encountered: