Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/jsonnet/GIT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1e5064bfee9299e657d1d478626dfb60036ea580
85284ade969df3f45c01eb0a9c513267c0a60b81
7 changes: 2 additions & 5 deletions .github/jsonnet/pnpm.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,17 @@ local yarn = import 'yarn.jsonnet';
*
* @param {array} [args=[]] - Additional command line arguments for pnpm install
* @param {object} [with={}] - Additional configuration options
* @param {string} [version='10'] - PNPM version to use
* @param {boolean} [prod=false] - Whether to install only production dependencies
* @param {string} [storeDir=null] - Directory for pnpm store
* @param {string} [ifClause=null] - Conditional expression to determine if step should run
* @param {string} [workingDirectory=null] - Directory to run pnpm in
* @returns {steps} - Array containing a single step object
*/
install(args=[], with={}, version='10', prod=false, storeDir=null, ifClause=null, workingDirectory=null)::
install(args=[], with={}, prod=false, storeDir=null, ifClause=null, workingDirectory=null)::
base.action(
'Install pnpm tool',
'pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320', // v5
with=
{ version: version } +
with,
with=with,
ifClause=ifClause,
) +
self.installPackages(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
"prettier --write"
]
},
"packageManager": "pnpm@10.11.0"
"packageManager": "pnpm@10.33.4"
}
Loading