Replies: 1 comment
-
Working now. I was generating the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to use Bazel to develop a Svelte application (I'm very new to Svelte). Bazel is very opinionated about the rules that generated the files and who can modified them afterwards, basically, files are inmutable after they are generated.
One of the problems I'm facing is that all the files inside
.svelte-kit/
are being generated and later on, when starting the Svelte (dev) server it tries to update/sync them.Here there are my questions:
sync
behavior?.svelte-kit/
files with exactly the same content they will have when running the server? I would expectwrite_if_changed
to do nothing.In this repository I created a minimum reproducible example: https://github.com/jgsogo/bazel-sveltekit-example
Thanks
Beta Was this translation helpful? Give feedback.
All reactions