Skip to content
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

Unable to pass the watch option to esbuild. #52

Open
gablabelle opened this issue Aug 29, 2022 · 0 comments
Open

Unable to pass the watch option to esbuild. #52

gablabelle opened this issue Aug 29, 2022 · 0 comments

Comments

@gablabelle
Copy link

gablabelle commented Aug 29, 2022

Hello,

I'm trying to setup esbuild-node-tsx in a monorepo.

So instead of using nodemon, I'd like to simply pass options to esbuild since it supports passing a watch flag to build.

// etsc.watch-config.js
module.exports = {
  // Supports all esbuild.build options
  esbuild: {
    incremental: true,
    watch: {
      onRebuild(error, result) {
        if (error) console.error('watch build failed:', error);
        else console.error('watch build succeeded:', result);
      },
    },
  },
  postbuild: async () => {
    console.log('postbuild');
  },
};

in package.json, I have the script
"dev": "etsc --config=../../etsc.watch-config.js"

But it seems to not watch anything at all when running yarn dev. FYI buildOptions is a console.log, I've added in the main function.

Screen Shot 2022-08-29 at 18 26 39

Screen Shot 2022-08-29 at 18 25 06

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant