Skip to content

Commit

Permalink
Use turbo repo to cache build artifacts (#3481)
Browse files Browse the repository at this point in the history
  • Loading branch information
humphd authored Apr 13, 2022
1 parent d1dce8a commit 17e421e
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 0 deletions.
Empty file modified src/github-url-parser/dist/extract-github-info.d.ts
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/extract-github-info.d.ts.map
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/html-to-urls.d.ts
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/html-to-urls.d.ts.map
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/index.d.ts
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/index.d.ts.map
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/parse-github-url.d.ts
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/parse-github-url.d.ts.map
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/reserved-names.d.ts
100644 → 100755
Empty file.
Empty file modified src/github-url-parser/dist/reserved-names.d.ts.map
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions src/github-url-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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\"",
Expand Down
17 changes: 17 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": []
},
Expand Down

0 comments on commit 17e421e

Please sign in to comment.