From 17e421eef0d3e3e04861116d6a73e4b4a857ffa1 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Wed, 13 Apr 2022 19:28:32 -0400 Subject: [PATCH] Use turbo repo to cache build artifacts (#3481) --- .../dist/extract-github-info.d.ts | 0 .../dist/extract-github-info.d.ts.map | 0 src/github-url-parser/dist/html-to-urls.d.ts | 0 .../dist/html-to-urls.d.ts.map | 0 src/github-url-parser/dist/index.d.ts | 0 src/github-url-parser/dist/index.d.ts.map | 0 .../dist/parse-github-url.d.ts | 0 .../dist/parse-github-url.d.ts.map | 0 src/github-url-parser/dist/reserved-names.d.ts | 0 .../dist/reserved-names.d.ts.map | 0 src/github-url-parser/package.json | 1 + turbo.json | 17 +++++++++++++++++ 12 files changed, 18 insertions(+) mode change 100644 => 100755 src/github-url-parser/dist/extract-github-info.d.ts mode change 100644 => 100755 src/github-url-parser/dist/extract-github-info.d.ts.map mode change 100644 => 100755 src/github-url-parser/dist/html-to-urls.d.ts mode change 100644 => 100755 src/github-url-parser/dist/html-to-urls.d.ts.map mode change 100644 => 100755 src/github-url-parser/dist/index.d.ts mode change 100644 => 100755 src/github-url-parser/dist/index.d.ts.map mode change 100644 => 100755 src/github-url-parser/dist/parse-github-url.d.ts mode change 100644 => 100755 src/github-url-parser/dist/parse-github-url.d.ts.map mode change 100644 => 100755 src/github-url-parser/dist/reserved-names.d.ts mode change 100644 => 100755 src/github-url-parser/dist/reserved-names.d.ts.map diff --git a/src/github-url-parser/dist/extract-github-info.d.ts b/src/github-url-parser/dist/extract-github-info.d.ts old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/extract-github-info.d.ts.map b/src/github-url-parser/dist/extract-github-info.d.ts.map old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/html-to-urls.d.ts b/src/github-url-parser/dist/html-to-urls.d.ts old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/html-to-urls.d.ts.map b/src/github-url-parser/dist/html-to-urls.d.ts.map old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/index.d.ts b/src/github-url-parser/dist/index.d.ts old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/index.d.ts.map b/src/github-url-parser/dist/index.d.ts.map old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/parse-github-url.d.ts b/src/github-url-parser/dist/parse-github-url.d.ts old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/parse-github-url.d.ts.map b/src/github-url-parser/dist/parse-github-url.d.ts.map old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/reserved-names.d.ts b/src/github-url-parser/dist/reserved-names.d.ts old mode 100644 new mode 100755 diff --git a/src/github-url-parser/dist/reserved-names.d.ts.map b/src/github-url-parser/dist/reserved-names.d.ts.map old mode 100644 new mode 100755 diff --git a/src/github-url-parser/package.json b/src/github-url-parser/package.json index 33c43a6a2b..270cd013c9 100644 --- a/src/github-url-parser/package.json +++ b/src/github-url-parser/package.json @@ -4,6 +4,7 @@ "description": "A library for parsing GitHub URLs from HTM text", "main": "src/index.js", "scripts": { + "build": "pnpm types", "test": "jest -c jest.config.js", "coverage": "jest -c jest.config.js --collect-coverage", "eslint": "eslint --config .eslintrc.js \"./**/*.js\"", diff --git a/turbo.json b/turbo.json index acf080108d..897c1f24ff 100644 --- a/turbo.json +++ b/turbo.json @@ -3,6 +3,23 @@ "build": { "dependsOn": ["^build"] }, + "next#build": { + "dependsOn": ["^build"], + "outputs": ["src/web/app/dist/**", "src/web/app/.next/**"] + }, + "docs#build": { + "dependsOn": ["^build"], + "outputs": ["src/web/docusaurus/build", "src/web/docusaurus/.docusaurus"] + }, + "status#build": { + "dependsOn": ["^build"], + "outputs": ["src/api/status/public/dist"] + }, + "gh-url-parser#build": { + "dependsOn": ["^build"], + "outputs": ["src/github-url-parser/dist"] + }, + "test": { "outputs": [] },