Test repo containing:
- ember 3.28 app
- stencil component lib
- typescript lib
- other default turbo repo packages / apps - not used
Be able to develop on the library, stencil components and ember at the same time and have everything auto-rebuild and refresh.
At this point, changes in the lib, cause rebuilds of the component and the ember app. However, the updated lib functions are only reflected in the ember app - although the component rebuilds, it does not pick up the updated version of the function from the lib.
This turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
To build all apps and packages, run the following command:
cd my-turborepo
npm run build
To develop all apps and packages, run the following command:
cd my-turborepo
npm run dev
Learn more about the power of Turborepo: