-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Upgrading turbo and pnpm * DRY * Adjusting regex to match any variable name; not only `input` * Updating changelog * Fixing pnpm version for workflow * Adding tests to check if all output files have been patched successfully * Fixing turbo pipeline * Adjusting pnpm version * Trying relative static paths * Adding temporary log call (cherry picked from commit dffc2b4) Co-authored-by: Anderson Arboleya <anderson@arboleya.me>
- Loading branch information
Showing
9 changed files
with
84 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{ | ||
"$schema": "https://turborepo.org/schema.json", | ||
"pipeline": { | ||
"tasks": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"inputs": ["src/**"], | ||
"outputs": ["dist/**"], | ||
"outputMode": "new-only" | ||
"outputLogs": "new-only" | ||
}, | ||
"test": { | ||
"outputMode": "new-only" | ||
"dependsOn": ["^test", "build"], | ||
"inputs": ["src/**"], | ||
"outputs": ["dist/**"], | ||
"outputLogs": "new-only" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters