Skip to content

Commit 473d73b

Browse files
committed
Merge branch 'utoo' into feat/turboapack-define-env
2 parents a57283a + 0bc7709 commit 473d73b

File tree

359 files changed

+29174
-19310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

359 files changed

+29174
-19310
lines changed

.github/actions/next-repo-actions/dist/bankrupt/index.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/actions/next-repo-actions/dist/bankrupt/licenses.txt

Lines changed: 0 additions & 1110 deletions
This file was deleted.

.github/actions/next-repo-actions/dist/feature-requests/index.mjs

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

.github/actions/next-repo-actions/dist/issues-by-version/index.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/actions/next-repo-actions/dist/issues-by-version/licenses.txt

Lines changed: 0 additions & 1110 deletions
This file was deleted.

.github/actions/next-repo-actions/dist/issues/index.mjs

Lines changed: 7 additions & 7 deletions
Large diffs are not rendered by default.

.github/actions/next-repo-actions/dist/prs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/next-repo-actions/dist/triage-issues-with-ai/index.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/actions/next-repo-actions/dist/triage-issues-with-ai/licenses.txt

Lines changed: 0 additions & 1509 deletions
This file was deleted.

.github/actions/next-repo-actions/lib/util.mjs

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,3 @@ export function ninetyDaysAgo() {
1818
date.setDate(date.getDate() - 90)
1919
return date.toISOString().split('T')[0]
2020
}
21-
22-
export async function getLatestCanaryVersion() {
23-
let latestCanaryVersion
24-
25-
try {
26-
const { stdout } = await getExecOutput('pnpm', [
27-
'view',
28-
'next',
29-
'dist-tags',
30-
'--json',
31-
])
32-
33-
const distTags = JSON.parse(stdout)
34-
latestCanaryVersion = distTags.canary || null
35-
} catch (error) {
36-
setFailed(`Error fetching latest Next.js canary version, skipping update.`)
37-
}
38-
39-
return latestCanaryVersion
40-
}
41-
42-
export async function getLatestVersion() {
43-
let latestVersion
44-
45-
try {
46-
const { stdout } = await getExecOutput('pnpm', [
47-
'view',
48-
'next',
49-
'dist-tags',
50-
'--json',
51-
])
52-
53-
const distTags = JSON.parse(stdout)
54-
latestVersion = distTags.latest || null
55-
} catch (error) {
56-
setFailed(`Error fetching latest Next.js version, skipping update.`)
57-
}
58-
59-
return latestVersion
60-
}

0 commit comments

Comments
 (0)