-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Single Package repo work with globalDependencies config (#4240)
Co-authored-by: Stefano Faieta <9802152+stefanofa@users.noreply.github.com>
- Loading branch information
Showing
7 changed files
with
69 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Setup | ||
$ . ${TESTDIR}/../setup.sh | ||
$ . ${TESTDIR}/setup.sh $(pwd) "yarn@1.22.17" | ||
$ rm -rf package-lock.json || true # exists because of setup.sh script above | ||
$ yarn install > /dev/null 2>&1 | ||
$ git commit --quiet -am "Update lockfile" # clean git state | ||
|
||
Check | ||
$ ${TURBO} run build | ||
\xe2\x80\xa2 Running build (esc) | ||
\xe2\x80\xa2 Remote caching disabled (esc) | ||
build: cache miss, executing 13cea0f56e6c743e | ||
build: yarn run v1.22.17 | ||
build: warning package.json: No license field | ||
build: $ echo 'building' > foo | ||
build: Done in \s*[\.0-9]+m?s\. (re) | ||
|
||
Tasks: 1 successful, 1 total | ||
Cached: 0 cached, 1 total | ||
Time:\s*[\.0-9]+m?s (re) | ||
|
||
|
||
$ ${TURBO} run build | ||
\xe2\x80\xa2 Running build (esc) | ||
\xe2\x80\xa2 Remote caching disabled (esc) | ||
build: cache hit, replaying output 13cea0f56e6c743e | ||
build: yarn run v1.22.17 | ||
build: warning package.json: No license field | ||
build: $ echo 'building' > foo | ||
build: Done in \s*[\.0-9]+m?s\. (re) | ||
|
||
Tasks: 1 successful, 1 total | ||
Cached: 1 cached, 1 total | ||
Time:\s*[\.0-9]+m?s >>> FULL TURBO (re) | ||
|
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