summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2022-01-29 08:54:43 -0800
committerGravatar Fred K. Schott <fkschott@gmail.com> 2022-01-29 08:55:13 -0800
commit6789277fd62215f13e8a35e5cc21277a22e2cd86 (patch)
tree9644965e913ea1efa13638011346bef067176139
parentc9da630e2eff408091f34c62104606e5fcdfa533 (diff)
downloadastro-6789277fd62215f13e8a35e5cc21277a22e2cd86.tar.gz
astro-6789277fd62215f13e8a35e5cc21277a22e2cd86.tar.zst
astro-6789277fd62215f13e8a35e5cc21277a22e2cd86.zip
update turbo config
-rw-r--r--package.json35
-rw-r--r--turbo.json32
2 files changed, 34 insertions, 33 deletions
diff --git a/package.json b/package.json
index a7997a7f9..002e8cf12 100644
--- a/package.json
+++ b/package.json
@@ -18,38 +18,6 @@
"lint": "eslint \"packages/**/*.ts\"",
"format": "prettier -w ."
},
- "turbo": {
- "baseBranch": "origin/main",
- "pipeline": {
- "build": {
- "dependsOn": [
- "^build"
- ],
- "outputs": [
- "**/dist/**",
- "!**/vendor/**"
- ]
- },
- "dev": {
- "cache": false
- },
- "test": {
- "outputs": []
- },
- "test:templates": {
- "outputs": []
- },
- "benchmark": {
- "dependsOn": [
- "^build"
- ],
- "outputs": []
- },
- "lint": {
- "outputs": []
- }
- }
- },
"workspaces": [
"compiled/*",
"packages/markdown/*",
@@ -89,5 +57,6 @@
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
- }
+ },
+ "packageManager": "yarn@1.22.5"
}
diff --git a/turbo.json b/turbo.json
new file mode 100644
index 000000000..552e5c0b9
--- /dev/null
+++ b/turbo.json
@@ -0,0 +1,32 @@
+{
+ "baseBranch": "origin/main",
+ "pipeline": {
+ "build": {
+ "dependsOn": [
+ "^build"
+ ],
+ "outputs": [
+ "**/dist/**",
+ "!**/vendor/**"
+ ]
+ },
+ "dev": {
+ "cache": false
+ },
+ "test": {
+ "outputs": []
+ },
+ "test:templates": {
+ "outputs": []
+ },
+ "benchmark": {
+ "dependsOn": [
+ "^build"
+ ],
+ "outputs": []
+ },
+ "lint": {
+ "outputs": []
+ }
+ }
+}