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", "name": "@biscuitland/helpers",
"version": "3.0.2", "version": "3.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",

View File

@ -1,32 +1,35 @@
{ {
"$schema": "https://turborepo.org/schema.json", "$schema": "https://turborepo.org/schema.json",
"pipeline": { "pipeline": {
"@biscuitland/rest#build": { "@biscuitland/rest#build": {
"dependsOn": [ "dependsOn": [
"@biscuitland/common#build" "@biscuitland/common#build"
] ]
}, },
"@biscuitland/common#build": { "@biscuitland/common#build": {
"dependsOn": [] "dependsOn": []
}, },
"@biscuitland/ws#build": { "@biscuitland/ws#build": {
"dependsOn": [ "dependsOn": [
"@biscuitland/rest#build", "@biscuitland/rest#build",
"@biscuitland/common#build" "@biscuitland/common#build"
] ]
}, },
"@biscuitland/core#build": { "@biscuitland/core#build": {
"dependsOn": [ "dependsOn": [
"@biscuitland/rest#build", "@biscuitland/rest#build",
"@biscuitland/ws#build", "@biscuitland/ws#build",
"@biscuitland/common#build" "@biscuitland/common#build"
] ]
}, },
"clean": { "@biscuitland/helpers#build": {
"cache": false "dependsOn": []
}, },
"dev": { "clean": {
"cache": false "cache": false
} },
} "dev": {
"cache": false
}
}
} }