The changes made in services of project root are not reflected when running desktop application

I am starting with code contribution in Joplin. I have made some changes under /packages->lib->services->AlarmServiceDriverNode.ts.

But when running

yarn start

for desktop application, the changes are not reflected. Even the logger is not reflecting the changes. Please guide

Did you read the build guide?
Specifically:

Watching files
To make changes to the application, you'll need to rebuild any TypeScript file you've changed. The simplest way to do this is to watch for changes from the root of the project. Simply run this command, and it should take care of the rest:
yarn run watch
Running yarn run tsc would have the same effect, but without watching.

1 Like

thank you, its working now, my changes are reflected