1
0
mirror of synced 2025-12-22 11:26:57 -05:00

Migrate CommonJS to ESM (#20301)

* First run of script

* Get the app running --- ish

* Get NextJS working

* Remove `node:`

* Get more tests passing in unit directory

* Update FailBot test to use nock

* Update test.yml

* Update Dockerfile

* tests/content fixes

* Update page.js

* Update build-changelog.js

* updating tests/routing

* Update orphan-tests.js

* updating tests/rendering

* Update .eslintrc.js

* Update .eslintrc.js

* Install jest/globals

* "linting" tests

* staging update to server.mjs

* Change '.github/allowed-actions.js' to a ESM export

* Lint

* Fixes for the main package.json

* Move Jest to be last in the npm test command so we can pass args

* Just use 'npm run lint' in the npm test command

* update algolia label script

* update openapi script

* update require on openapi

* Update enterprise-algolia-label.js

* forgot JSON.parse

* Update lunr-search-index.js

* Always explicitly include process.cwd() for JSON file reads pathed from project root

* update graphql/update-files.js script

* Update other npm scripts using jest to pass ESM NODE_OPTIONS

* Update check-for-enterprise-issues-by-label.js for ESM

* Update create-enterprise-issue.js for ESM

* Import jest global for browser tests

* Convert 'script/deploy' to ESM

Co-authored-by: Grace Park <gracepark@github.com>
Co-authored-by: James M. Greene <jamesmgreene@github.com>
This commit is contained in:
Kevin Heis
2021-07-14 13:49:18 -07:00
committed by GitHub
parent b6f8278748
commit 42e785b0a8
351 changed files with 6842 additions and 8595 deletions

View File

@@ -1,7 +1,9 @@
const github = require('./github')()
#!/usr/bin/env node
import xGithub from './github.js'
const github = xGithub()
// https://docs.github.com/rest/reference/git#get-a-reference
async function getCommitSha (owner, repo, ref) {
export async function getCommitSha (owner, repo, ref) {
try {
const { data } = await github.git.getRef({
owner,
@@ -16,7 +18,7 @@ async function getCommitSha (owner, repo, ref) {
}
// https://docs.github.com/rest/reference/git#list-matching-references
async function listMatchingRefs (owner, repo, ref) {
export async function listMatchingRefs (owner, repo, ref) {
try {
// if the ref is found, this returns an array of objects;
// if the ref is not found, this returns an empty array
@@ -33,7 +35,7 @@ async function listMatchingRefs (owner, repo, ref) {
}
// https://docs.github.com/rest/reference/git#get-a-commit
async function getTreeSha (owner, repo, commitSha) {
export async function getTreeSha (owner, repo, commitSha) {
try {
const { data } = await github.git.getCommit({
owner,
@@ -48,7 +50,7 @@ async function getTreeSha (owner, repo, commitSha) {
}
// https://docs.github.com/rest/reference/git#get-a-tree
async function getTree (owner, repo, ref, allowedPaths = []) {
export async function getTree (owner, repo, ref, allowedPaths = []) {
const commitSha = await getCommitSha(owner, repo, ref)
const treeSha = await getTreeSha(owner, repo, commitSha)
try {
@@ -68,7 +70,7 @@ async function getTree (owner, repo, ref, allowedPaths = []) {
}
// https://docs.github.com/rest/reference/git#get-a-blob
async function getContentsForBlob (owner, repo, blob) {
export async function getContentsForBlob (owner, repo, blob) {
const { data } = await github.git.getBlob({
owner,
repo,
@@ -79,7 +81,7 @@ async function getContentsForBlob (owner, repo, blob) {
}
// https://docs.github.com/rest/reference/repos#get-repository-content
async function getContents (owner, repo, ref, path) {
export async function getContents (owner, repo, ref, path) {
try {
const { data } = await github.repos.getContent({
owner,
@@ -96,7 +98,7 @@ async function getContents (owner, repo, ref, path) {
}
// https://docs.github.com/en/rest/reference/pulls#list-pull-requests
async function listPulls (owner, repo) {
export async function listPulls (owner, repo) {
try {
const { data } = await github.pulls.list({
owner,
@@ -110,7 +112,7 @@ async function listPulls (owner, repo) {
}
}
async function createIssueComment (owner, repo, pullNumber, body) {
export async function createIssueComment (owner, repo, pullNumber, body) {
try {
const { data } = await github.issues.createComment({
owner,
@@ -124,14 +126,3 @@ async function createIssueComment (owner, repo, pullNumber, body) {
throw (err)
}
}
module.exports = {
getTree,
getTreeSha,
getCommitSha,
getContentsForBlob,
getContents,
listMatchingRefs,
listPulls,
createIssueComment
}