Replace lerna with turborepo (#2073)

This change allows our ui libraries to be built separately. It is therefore to utilize different build tools for individual projects, as well as using build caches for the local build.

Co-authored-by: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
Co-authored-by: Matthias Thieroff <matthias.thieroff@cloudogu.com>
This commit is contained in:
Konstantin Schaper
2022-06-22 11:49:26 +02:00
committed by GitHub
parent 77ab43c93b
commit 84f220e5b2
43 changed files with 1216 additions and 2969 deletions

View File

@@ -21,7 +21,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
const lerna = require("../lerna");
const yarn = require("../yarn");
module.exports = args => {
if (args.length < 1) {
@@ -30,6 +31,5 @@ module.exports = args => {
}
const version = args[0];
lerna.version(version);
yarn.workspaceVersion(version);
};