1
0
mirror of synced 2025-12-22 19:34:15 -05:00

Remove import x statements (#20594)

* Clear out most import x

* Update rimraf use

* Move up readme blocks in scripts
This commit is contained in:
Kevin Heis
2021-07-29 13:28:30 -07:00
committed by GitHub
parent 1ed18e1448
commit b29e37318a
84 changed files with 590 additions and 563 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env node
import xGithub from './github.js'
const github = xGithub()
import Github from './github.js'
const github = Github()
// https://docs.github.com/rest/reference/git#get-a-reference
export async function getCommitSha(owner, repo, ref) {