[0.68.0](https://github.com/projen/projen/compare/v0.67.87...v0.68.0) (2023-03-14)
⚠ BREAKING CHANGES
* **subproject:** Projenrc components are no longer added to subprojects
When a project is a subproject, they do not require a projenrc file.
Previously a Projenrc component was added to every subproject.
To restore the previous behavior, you can manually add the required `Projenrc` component to the project:
ts
declare subproject: typescript.TypeScriptProject;
new typescript.Projenrc(subproject);
Features
* **subproject:** call the default task of the root project for synth from subprojects ([2503](https://github.com/projen/projen/issues/2503)) ([5ecc416](https://github.com/projen/projen/commit/5ecc4165dce59e6d3f89b6e395fa64a9e28e4027)), closes [#2497](https://github.com/projen/projen/issues/2497)