fix helpers (#140)

* fix

* fix

* update version

* fix helpers

* fix
This commit is contained in:
MARCROCK22 2023-06-03 16:52:47 -04:00 committed by GitHub
parent d14c85b724
commit 7b063bf7d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 31 deletions

View File

@ -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",

View File

@ -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
}
}
}