-
-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not Watching Files #7
Comments
After running the Command:
|
Looked into the issue and it turns out it was due to some faulty documentation. The problem is that the update: Found out that the |
Working
|
Adjusted my |
I'll leave it open for whether you want this issue to reference the issues above or not |
Hey,
With the
--watch
flag or options present, denon doesn't seem to watch for changes. I assume i can run a a Deno app with Denon, make a change to the file, and it would show the new change without restarting the server.My Setup
Command
I can running the following command to use denon to initiate the server:
Note: the below command is the way it is because after installing denon, the command for it isn't working and i can't be bothered to look into it yet
deno --allow-net --allow-read --allow-run --allow-env --allow-write https://deno.land/x/denon/denon.ts
Config
Summary
Denon runs the app fine, it starts the correct file, and i can view the project in the browser, but watch doesn't 'seem' o be working, for example, i have a
console.log('Hello')
, i run the app, change the log text toconsole.log('Hello world')
, but still see "Hello" and not "Hello World"The text was updated successfully, but these errors were encountered: