From 7b063bf7d9ec3f916826db32b7a9dbc33d25cc97 Mon Sep 17 00:00:00 2001 From: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com> Date: Sat, 3 Jun 2023 16:52:47 -0400 Subject: [PATCH] fix helpers (#140) * fix * fix * update version * fix helpers * fix --- packages/helpers/package.json | 2 +- turbo.json | 63 ++++++++++++++++++----------------- 2 files changed, 34 insertions(+), 31 deletions(-) diff --git a/packages/helpers/package.json b/packages/helpers/package.json index 9158dc0..d6044dd 100644 --- a/packages/helpers/package.json +++ b/packages/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/helpers", - "version": "3.0.2", + "version": "3.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", diff --git a/turbo.json b/turbo.json index bc3adc8..74e9557 100644 --- a/turbo.json +++ b/turbo.json @@ -1,32 +1,35 @@ { - "$schema": "https://turborepo.org/schema.json", - "pipeline": { - "@biscuitland/rest#build": { - "dependsOn": [ - "@biscuitland/common#build" - ] - }, - "@biscuitland/common#build": { - "dependsOn": [] - }, - "@biscuitland/ws#build": { - "dependsOn": [ - "@biscuitland/rest#build", - "@biscuitland/common#build" - ] - }, - "@biscuitland/core#build": { - "dependsOn": [ - "@biscuitland/rest#build", - "@biscuitland/ws#build", - "@biscuitland/common#build" - ] - }, - "clean": { - "cache": false - }, - "dev": { - "cache": false - } - } + "$schema": "https://turborepo.org/schema.json", + "pipeline": { + "@biscuitland/rest#build": { + "dependsOn": [ + "@biscuitland/common#build" + ] + }, + "@biscuitland/common#build": { + "dependsOn": [] + }, + "@biscuitland/ws#build": { + "dependsOn": [ + "@biscuitland/rest#build", + "@biscuitland/common#build" + ] + }, + "@biscuitland/core#build": { + "dependsOn": [ + "@biscuitland/rest#build", + "@biscuitland/ws#build", + "@biscuitland/common#build" + ] + }, + "@biscuitland/helpers#build": { + "dependsOn": [] + }, + "clean": { + "cache": false + }, + "dev": { + "cache": false + } + } } \ No newline at end of file