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 assistant does not work because it fails to load the rules. The path includes a drive (c:) and await import() assumes 'c' is a protocol, but it only accepts file: protocol.
Expected Behaviour
Running assistant should work on Windows.
Actual Behaviour
Running assistant does not work because it fails to load the rules. The path includes a drive (
c:
) andawait import()
assumes 'c' is a protocol, but it only acceptsfile:
protocol.Reproduce Scenario (including but not limited to)
Steps to Reproduce
Platform and Version
Sample Code that illustrates the problem
const rulesModule = await import(
${process.cwd()}${outputPath}/${FILENAME});
Logs taken while reproducing problem
The text was updated successfully, but these errors were encountered: