diff --git a/packages/broccoli-side-watch/README.md b/packages/broccoli-side-watch/README.md index 5a2def978..b73061fa3 100644 --- a/packages/broccoli-side-watch/README.md +++ b/packages/broccoli-side-watch/README.md @@ -8,12 +8,14 @@ Let's assume you have a v2 addon with a package name of `grand-prix` somewhere i Every time you change something in the source of that addon, you can rebuild it by watching the addon's build (currently using rollup). However, by default the host Ember app doesn't rebuild automatically, so you have to restart the Ember app every time this happens which is a slog. -With this library, you can add the following to your `ember-cli-build.js` to vastly improve your life as a developer: +With this library, you can add the following to your `ember-cli-build.js` to vastly improve your life as a developer. + +For an Ember Application: ```js const sideWatch = require('@embroider/broccoli-side-watch'); -const app = new EmberApp(defaults, { +const app = new EmberApp(defaults, { trees: { app: sideWatch('app', { watching: [ 'grand-prix', // this will resolve the package by name and watch all its importable code @@ -22,3 +24,16 @@ const app = new EmberApp(defaults, { }, }); ``` + +Or for an Ember V1 Addon's dummy app: + +```js +const app = new EmberAddon(defaults, { + trees: { + app: sideWatch('tests/dummy/app', { watching: [ + 'grand-prix', // this will resolve the package by name and watch all its importable code + '../grand-prix/dist', // or you point to a specific directory to be watched + ] }, + }, +}); +``` \ No newline at end of file