From 046c869cd888ee6f9fc97acf3f1f9849a0be37da Mon Sep 17 00:00:00 2001 From: "C. T. Lin" Date: Tue, 18 Jan 2022 01:23:12 +0800 Subject: [PATCH] docs(configuration): fix commas in JSON --- docs/pages/docs/reference/configuration.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/pages/docs/reference/configuration.mdx b/docs/pages/docs/reference/configuration.mdx index ccdc1dcc29832..e455cf74173e9 100644 --- a/docs/pages/docs/reference/configuration.mdx +++ b/docs/pages/docs/reference/configuration.mdx @@ -32,7 +32,7 @@ This is useful for busting the cache based on `.env` files (not in Git), environ ".env", // contents will impact hashes of all tasks "tsconfig.json", // contents will impact hashes of all tasks "$GITHUB_TOKEN"// value will impact the hashes of all tasks - ], + ] } } ``` @@ -100,9 +100,9 @@ Prefixing an item in `dependsOn` with a `$` tells `turbo` that this pipeline tas // "A package's `deploy` command, depends on its own `build` // and `test` commands first being completed" "dependsOn": ["build", "test"] - } + }, // A package's `lint` command has no dependencies - "lint": {}, + "lint": {} } } } @@ -119,7 +119,7 @@ Prefixing an item in `dependsOn` with a `$` tells `turbo` that this pipeline tas "^build", "$SOMETHING_ELSE" // value will impact the hashes of all build tasks }, - "outputs": ["dist/**", ".next/**"], + "outputs": ["dist/**", ".next/**"] }, "web#build": { "dependsOn": [ @@ -127,12 +127,12 @@ Prefixing an item in `dependsOn` with a `$` tells `turbo` that this pipeline tas "$STRIPE_SECRET_KEY", // value will impact hash of only web's build task "$NEXT_PUBLIC_STRIPE_PUBLIC_KEY" ], - "outputs": [".next/**"], + "outputs": [".next/**"] } }, "globalDependencies": [ "$GITHUB_TOKEN"// value will impact the hashes of all tasks - ], + ] } } ```