mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-28 17:48:17 -05:00
Co-authored-by: Zoltan Kochan <z@kochan.io> Co-authored-by: David Michon <dmichon@microsoft.com>
9 lines
180 B
JavaScript
9 lines
180 B
JavaScript
'use strict'
|
|
const { getCurrentBranch } = require('@pnpm-utils').default
|
|
|
|
main()
|
|
async function main() {
|
|
const branchName = await getCurrentBranch();
|
|
console.log(branchName)
|
|
}
|