-
-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update verification examples: Remove duplicates, dependency updates a…
…nd global volta node version update
- Loading branch information
Showing
41 changed files
with
13,067 additions
and
15,361 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 |
---|---|---|
|
@@ -65,7 +65,7 @@ | |
"npm": ">=10.2.3" | ||
}, | ||
"volta": { | ||
"node": "22.13.1", | ||
"node": "22.14.0", | ||
"npm": "10.9.2" | ||
}, | ||
"files": [ | ||
|
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ | |
"npm": ">=10.2.3" | ||
}, | ||
"volta": { | ||
"node": "22.13.1", | ||
"node": "22.14.0", | ||
"npm": "10.9.2" | ||
}, | ||
"files": [ | ||
|
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 |
---|---|---|
|
@@ -51,7 +51,7 @@ | |
"npm": ">=10.2.3" | ||
}, | ||
"volta": { | ||
"node": "22.13.1", | ||
"node": "22.14.0", | ||
"npm": "10.9.2" | ||
}, | ||
"files": [ | ||
|
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
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
$MyPath = Split-Path -Path $MyInvocation.MyCommand.Path -Parent | ||
|
||
# yarn first, because it usually has the most problems | ||
Set-Location $MyPath/yarn; npm run verify:ci | ||
Set-Location $MyPath/vite; npm run verify:ci | ||
Set-Location $MyPath/webpack; npm run verify:ci | ||
Set-Location $MyPath/angular; npm run verify:ci | ||
Set-Location $MyPath/next; npm run verify:ci | ||
Set-Location $MyPath/pnpm; pnpm run verify:ci | ||
|
||
Set-Location $MyPath |
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,11 +1,8 @@ | ||
MyPath=$(realpath $(dirname $0)) | ||
|
||
# yarn first, because it usually has the most problems | ||
cd $MyPath/yarn; npm run verify:ci | ||
cd $MyPath/vite; npm run verify:ci | ||
cd $MyPath/webpack; npm run verify:ci | ||
cd $MyPath/angular; npm run verify:ci | ||
cd $MyPath/next; npm run verify:ci | ||
cd $MyPath/pnpm; pnpm run verify:ci | ||
|
||
cd $MyPath |
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,7 +1,8 @@ | ||
$MyPath = Split-Path -Path $MyInvocation.MyCommand.Path -Parent | ||
|
||
# yarn first, because it usually has the most problems | ||
Set-Location $MyPath/peerYarn; npm run verify:ci | ||
Set-Location $MyPath/peerNpm; npm run verify:ci | ||
Set-Location $MyPath/peerPnpm; pnpm run verify:ci | ||
Set-Location $MyPath/peerYarn; npm run verify:ci | ||
|
||
Set-Location $MyPath |
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,7 +1,8 @@ | ||
MyPath=$(realpath $(dirname $0)) | ||
|
||
# yarn first, because it usually has the most problems | ||
cd $MyPath/peerYarn; npm run verify:ci | ||
cd $MyPath/peerNpm; npm run verify:ci | ||
cd $MyPath/peerPnpm; pnpm run verify:ci | ||
cd $MyPath/peerYarn; npm run verify:ci | ||
|
||
cd $MyPath |
Large diffs are not rendered by default.
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
Oops, something went wrong.