Continuously build Vue lib

Viewed 26

So I have a monorepo that has some Vue apps inside of it, and one package that exports Vue components.

When I want to start the app, I need to build the package that the app is dependent on.
Command is: vue-cli-service build --target lib src/index.ts

When I work on the app & package simultaneously, it is really annoying to have to run the build after each change to the package.
Is there a way to have it as hot/live build which when there are changes it will trigger a build for the package?

0 Answers
Related