-
Notifications
You must be signed in to change notification settings - Fork 27.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'canary' into fix/standalone-keep-alive
- Loading branch information
Showing
1,716 changed files
with
82,890 additions
and
82,927 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@vercel/web-tooling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nextest.toml @vercel/web-tooling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
packages/next/bundles/** -text | ||
packages/next/compiled/** -text | ||
|
||
# Make next/src/build folder indexable for github search | ||
packages/next/src/build/** linguist-generated=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,13 @@ | ||
# Learn how to add code owners here: | ||
# https://help.github.com/en/articles/about-code-owners | ||
|
||
# Codeowners now use Vercel Spaces | ||
# Search .vercel.approvers for all files | ||
|
||
* @timneutkens @ijjk @shuding @huozhi @feedthejim | ||
/.git* @vercel/next-js | ||
/docs/ @vercel/next-js @leerob | ||
/errors/ @vercel/next-js @leerob | ||
/examples/ @vercel/next-js @leerob @steven-tey | ||
/scripts/ @vercel/next-js | ||
/.alex* @vercel/next-js @leerob | ||
/.eslint* @vercel/next-js @leerob | ||
/.prettier* @vercel/next-js @leerob | ||
/*.md @vercel/next-js @leerob | ||
/packages/create-next-app/ @vercel/next-js | ||
/pnpm-lock.yaml @vercel/next-js @vercel/web-tooling | ||
|
||
# Image Component (@styfle) | ||
|
||
/**/*image* @timneutkens @ijjk @shuding @styfle @huozhi | ||
/**/*image*/** @timneutkens @ijjk @shuding @styfle @huozhi | ||
/packages/next/client/use-intersection.tsx @timneutkens @ijjk @shuding @styfle | ||
/packages/next/server/lib/squoosh/ @timneutkens @ijjk @shuding @styfle | ||
/packages/next/server/serve-static.ts @timneutkens @ijjk @shuding @styfle @huozhi | ||
/packages/next/server/config.ts @timneutkens @ijjk @shuding @styfle @huozhi | ||
|
||
# Tooling & Telemetry | ||
/**/*image* @timneutkens @ijjk @shuding @styfle @huozhi @vercel/devex | ||
/**/*image*/** @timneutkens @ijjk @shuding @styfle @huozhi @vercel/devex | ||
|
||
/packages/next/src/build/ @timneutkens @ijjk @shuding @vercel/web-tooling @huozhi | ||
/packages/next/src/telemetry/ @timneutkens @ijjk @shuding @padmaia | ||
/packages/next-swc/ @timneutkens @ijjk @shuding @vercel/web-tooling | ||
Cargo.toml @timneutkens @ijjk @shuding @vercel/web-tooling | ||
Cargo.lock @timneutkens @ijjk @shuding @vercel/web-tooling | ||
/.cargo/config.toml @timneutkens @ijjk @shuding @vercel/web-tooling | ||
/.config/nextest.toml @timneutkens @ijjk @shuding @vercel/web-tooling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
FROM node:16-bullseye | ||
FROM ubuntu:22.04 | ||
|
||
LABEL com.github.actions.name="Next.js PR Stats" | ||
LABEL com.github.actions.description="Compares stats of a PR with the main branch" | ||
LABEL repository="https://github.com/vercel/next-stats-action" | ||
|
||
COPY . /next-stats | ||
|
||
RUN apt update && apt upgrade -y | ||
RUN apt install unzip wget curl nano htop screen build-essential pkg-config libssl-dev git build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libreadline-dev libffi-dev python3 moreutils jq iproute2 openssh-server sudo whois dnsutils -y | ||
|
||
RUN ln $(which python3) /usr/bin/python | ||
|
||
RUN curl -sfLS https://install-node.vercel.app/v18 | bash -s -- -f | ||
|
||
# Install node_modules | ||
RUN npm i -g [email protected] | ||
RUN npm i -g [email protected] [email protected] | ||
RUN cd /next-stats && pnpm install --production | ||
|
||
RUN git config --global user.email 'stats@localhost' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.