Commit graph

342 commits

Author SHA1 Message Date
github-actions[bot]
ff69c0f4e0 Update Google font-data.json (2023-01-26) (vercel/turbo#3479)
Automated changes by
[create-pull-request](https://github.com/peter-evans/create-pull-request)
GitHub action

Co-authored-by: wbinnssmith <wbinnssmith@users.noreply.github.com>
2023-01-26 10:07:13 -08:00
Leah
767dccb9c5 decode magic identifiers in error overlay (vercel/turbo#3433) 2023-01-26 17:50:20 +01:00
Tobias Koppers
8b42ea51de add edge compilation, runtime config parsing and edge apis (vercel/turbo#3396) 2023-01-26 12:55:51 +01:00
Tobias Koppers
991de97b75 partially support next metadata (vercel/turbo#3464)
This adds support for metadata in pages and layouts.

Full metadata support also needs support for implicit metadata with
files named `icon.ico` etc.

This PR also improves the test suite and adds a basic test case for app
dir support
2023-01-25 19:25:33 +01:00
github-actions[bot]
639ac4ff60 Update Google font-data.json (2023-01-25) (vercel/turbo#3463)
Automated changes by
[create-pull-request](https://github.com/peter-evans/create-pull-request)
GitHub action

Co-authored-by: wbinnssmith <wbinnssmith@users.noreply.github.com>
2023-01-25 08:26:02 +01:00
Alex Kirszenberg
7902145858 Fix data requests for dynamic routes (vercel/turbo#3435)
In addition to the fix, I've extracted the path regex/params matching logic from `turbopack-node` to `next-core`. `turbopack-node` now only declares a value trait which `next-core` implements.
2023-01-24 18:30:23 +00:00
Tobias Koppers
b256922644 refactor content sources to avoid evaluating content before serving (vercel/turbo#3334)
fixes WEB-141

This changes the ContentSource API.

Before a ContentSource returned a tuple of specificity and content.
Now it returns a tuple of specificity and a get_content function.

The old way made it very inefficient to combine multiple ContentSource.
All combined ContentSources were ask before, all returned specificity
and content, and they are ordered after that. That required to compute
all contents, even if it is not really used after ordering.

Now we order specificity and a get_content function and only compute the
content (by calling get_content) with the final result.

It also changes how data needs are expressed in the `get_content`
function. Instead of asking it over and over again with more data, it
statically returns the needed data with `vary` and the `get` function is
only called with that data. This is technically more limited than the
old way, but one can workaround that if needed. But practically we
probably never need that. On the other hand it improves the number of
function calls, since the `vary` method is only called once and the
`get` only once per request. Before data needs required at least 2 `get`
calls per request.
2023-01-24 16:16:33 +01:00
Justin Ridgewell
98c9d723ff Handle empty pageData during HMR (vercel/turbo#3412)
Our `pageData` HMR process treated an undefined response as an error condition, but if the page doesn't have a `getXyzProps` exported method, then this is the default response. This prevented us from having any pages without page props.

The new code just sends down an empty object, which seems to work for establishing the connection. HMR updates are sent down (and seem to trigger restarts, at least from what I tested with `getStaticProps`).

Fixes WEB-445
2023-01-21 06:47:38 +00:00
Leah
f3501d940b prevent injecting non js files in app renderer (vercel/turbo#3399) 2023-01-20 20:11:54 +00:00
Justin Ridgewell
82ac6f45f8 Update mdxjs and testing crates (vercel/turbo#3398)
This updates our `mdxjs` dependency to the tip of
https://github.com/wooorm/mdxjs-rs/pull/11, so that we can update it's
`swc_core` dependency (it conflicts with ours).

It also updates the `testing` crate to update it's `swc_common`
dependency (also conflicting with ours), and makes it a workspace
dependency.
2023-01-20 13:47:41 -05:00
Donny/강동윤
90801bfd3d Introduce next-dev-tests to rebuild automatically on test input changes (vercel/turbo#3288)
I verified that the crate is rebuilt if I make a change of inputs.

Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
2023-01-20 15:12:13 +01:00
Tobias Koppers
f8cd413786 improve resolveAlias to allow conditions to allow to apply aliases to… (vercel/turbo#3324)
… client/server only
2023-01-20 12:54:21 +01:00
Tobias Koppers
a168ccc9d3 add garbage collection (vercel/turbo#3094)
fixes WEB-265
fixes WEB-268
fixes WEB-4
fixes WEB-359
2023-01-20 10:16:02 +01:00
Will Binns-Smith
ed4bd62f2d Always mark styled-jsx as external to avoid duplicating with bundled copies (vercel/turbo#3386)
Fixes WEB-412.

Previously, references to styled-jsx inserted by the swc transform would be bundled, which duplicated the copy required by next, which is external. This marks the dependency is to be resolved as external always.

Test Plan: Verified in a small app that `<style jsx>` nodes result in a server-rendered response with the appropriate `<style>` tag in the head.
2023-01-20 04:23:26 +00:00
Will Binns-Smith
a922403b64 NodeProcessPool: implement debug mode for a single-process passing --inspect-brk (vercel/turbo#3385)
This implements a debug mode for spawning Node processes across multiple surfaces including `evaluate` and `get_renderer_pool`.

It:

* automatically limits concurrency to 1 process per pool
* passes `--inspect-brk` to spawned Node process
* sets the timeout to effectively-infinite duration

Test Plan: set the value to true for the call to `get_renderer_pool` in render_static.rs and attached to a debuggable server renderer process.
2023-01-20 01:58:11 +00:00
Will Binns-Smith
0aaf4fd87d Basic @next/font/google integration test (vercel/turbo#3170)
This:

* Implements a basic http server to mock returning a stylesheet from the Google Fonts API (**Note**: This importantly does *not* mock returning the font resources themselves, which are currently loaded by the browser. We should implement something to do this when we implement caching arbitrary http resources traced from `url()` and this is no longer loaded by the test browser)
* Adds an integration test that asserts the basic shape of the JS object returned by font functions
* ~Adds an integration test that asserts the browser correctly loads a font for the ascii unicode range, along with the appropriate `font-display`, variant, etc.~ Unfortunately `document.fonts` is not reliable with different font-display loading patterns as any of them can fall back.

As noted, this does not mock responses from Google for the font resources themselves, which are currently loaded by the test browser. This means that we'll be dependent on this external service for passing integration tests until we implement caching of `url()`s in Turbopack. We should monitor the reliability of this test.
2023-01-19 22:11:28 +00:00
Leah
1d3e782841 add full next.js config (vercel/turbo#3343) 2023-01-19 21:54:47 +01:00
Justin Ridgewell
f9dbb5d90a Install AsyncLocalStorage for appDir rendering (vercel/turbo#3374)
https://github.com/vercel/next.js/pull/44668 refactored Next's use of `AsyncLocalStorage`, and installs a "polyfill" of the API by patching the node import onto `globalThis.` Importantly, it's then used in the module scope during imports, so we need to install the polyfill early in the app rendering startup.

Fixes https://github.com/vercel/turbo/issues/3319
2023-01-19 07:32:42 +00:00
Leah
dc45f2d460 fix error overlay sometimes now showing (vercel/turbo#3331) 2023-01-19 02:15:44 +01:00
Tobias Koppers
ee6ad2e081 rename turbopackWebpackLoaders to turbopackLoaders (vercel/turbo#3325)
since they don't have exactly the same API

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2023-01-18 10:19:42 +01:00
Leah
611cc70338 read env vars from next.config.js (vercel/turbo#3128) 2023-01-17 18:51:29 +01:00
Tobias Koppers
1159b548c6 improve SSR data handling for pages (vercel/turbo#3326) 2023-01-16 22:39:26 +01:00
Alex Kirszenberg
ac8fa6849d Add basic test for next/dynamic (vercel/turbo#3307)
This adds two basic tests for next/dynamic:
* one ensures that SSR supports dynamic components;
* the other ensures that SSR doesn't run when `ssr: false`.
2023-01-13 16:40:40 +01:00
Alex Kirszenberg
4ffd82c8da Apply the next/dynamic SWC transform (vercel/turbo#3184)
This PR adds the next/dynamic SWC transform to the repo. This is copied
over from the implementation in
[](f70a6bfb86/packages/next-swc/crates/core/src/next_dynamic.rs),
with an additional mode for Turbopack.

For now, it applies it to all sources files (excluding node_modules, but
including embedded modules).

I've refactored the Next transforms logic to make it more easily
extendable in the future, and avoid creating more Vcs than absolutely
necessary.

This PR is the last item in the list of what's needed to support
next/dynamic in development.
2023-01-13 14:18:14 +01:00
Will Binns-Smith
2a590b3935 Implement experimental.resolveAlias map for next.config.js (vercel/turbo#3298)
Fixes WEB-416.

This implements loading an alias map set as `experimental.resolveAlias`
in `next.config.js`.

Test Plan: Added an integration test.
2023-01-13 06:51:50 +01:00
Justin Ridgewell
1241b4ff15 Fix deduplication when importing module statically and dynamically (vercel/turbo#3297)
The `processed_assets` `IndexSet` was performing deduplication on the `AssetVc`, which is the same between static (`import ... from "foo"`) and dynamic (`import("foo")`) imports of the same specifier. But, the _reference_ to those assets is different, and generates different chunking semantics. In order for both to succeed, we need to process both assets.

Coupled with vercel/turbo#3193's ability to load chunks on the server side, this fixes fixes WEB-381.
2023-01-13 05:48:52 +00:00
Tobias Koppers
ccce2d48fb add basic webpack loader support (vercel/turbo#3284)
add the minimum to run a simple raw-loader (see test case)

* add `experimental.turbopackWebpackLoaders` to next.config.js
* key is extension like `".mdx"`, value is an array of loaders like
`["mdx-loader"]`
2023-01-12 21:07:03 +01:00
Tobias Koppers
2df0f4838e fix imports in default arguments in functions (vercel/turbo#3292) 2023-01-12 17:34:08 +01:00
Tobias Koppers
539d9a537c node: prefixed aliases must not be in fallback aliases (vercel/turbo#3291) 2023-01-12 17:33:46 +01:00
Alex Kirszenberg
f4e663bb2a Add support for dynamic import()s on the server-side (vercel/turbo#3193)
This PR separates Turbopack's `runtime.js` into two:

- the Browser/DOM implementation, which uses `<script>` and `<link>`
tags for dynamically loading chunks;
- the Node.js/CommonJS implementation, which uses `require` instead.

~~The two runtimes share a lot of code, but I'm not sure what's the best
approach for sharing this logic, or even if we should, so for now they
are two separate entities.~~

The shared code between the two runtimes is now in a separate file to
avoid duplication.

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2023-01-12 16:37:44 +01:00
Tobias Koppers
010923e9f9 fix windows paths with --root (vercel/turbo#3281) 2023-01-12 12:38:17 +01:00
Tobias Koppers
3d99a8bcad fix code generation in shorthand properties (vercel/turbo#3259) 2023-01-12 09:09:01 +01:00
Tobias Koppers
753de8b3f8 provide resolvedUrl to next.js for rendering (vercel/turbo#3267) 2023-01-12 08:58:01 +01:00
Donny/강동윤
33a0d4fa7d Make file paths shorter to fix windows build (vercel/turbo#3256)
I verified that CI works with this change.


https://github.com/kdy1/turbo-windows-path-length/actions/runs/3889566103/jobs/6638025437

---

x-ref: https://github.com/vercel/next.js/pull/44760

x-ref:
https://github.com/vercel/next.js/actions/runs/3888528533/jobs/6635975573
x-ref:
https://github.com/vercel/next.js/actions/runs/3888528533/jobs/6635975680
x-ref:
https://github.com/vercel/next.js/actions/runs/3888528533/jobs/6635976658
2023-01-11 18:20:34 -07:00
github-actions[bot]
49c9b4d869 Update Google font-data.json (2023-01-11) (vercel/turbo#3255)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action

Co-authored-by: Will Binns-Smith <755844+wbinnssmith@users.noreply.github.com>
2023-01-11 14:07:59 +00:00
Thomas Knickman
ac4ae8582c fix(next-dev): add name to test package (vercel/turbo#3249) 2023-01-10 13:24:07 -05:00
Tobias Koppers
457fb81bc9 add support for transpilePackages (vercel/turbo#3116) 2023-01-10 16:22:07 +01:00
Ben Plate
9bb83af672 fix(next-core): check axes for variable fonts only (vercel/turbo#3209)
Addresses an issue currently affecting non-variable fonts in which
`next-dev` errors for non-variable Google fonts. This issue can be
replicated by using `next dev --turbo` and using a Google font that
isn't variable, like Hind.

The problem is resolved by unwrapping axes only if the font is variable.

Relevant issue: vercel/next.js#44282

Co-authored-by: Will Binns-Smith <wbinnssmith@gmail.com>
2023-01-09 16:12:32 -08:00
Alex Kirszenberg
564199f9d1 Fix clippy warnings with next-transform-strip-page-exports (vercel/turbo#3220) 2023-01-09 17:30:52 +00:00
Alex Kirszenberg
d79c929de5 Reorganize next_client and next_server modules (vercel/turbo#3182)
This is a straightforward chore PR to move next_client and next_server modules
around, in order to make navigation and imports more predictable between them.

I'm also planning to introduce a next_shared::context in a further PR, hence the
changes.
2023-01-06 10:36:09 +00:00
Alex Kirszenberg
c1685ab0a8 Page data HMR (vercel/turbo#3132)
Based on vercel/turbo#2968 

This builds upon vercel/turbo#2968 and @ForsakenHarmony's work on data routes to
enable page data HMR.

Page data HMR is a bit more clever than it is in Next.js as we won't
re-render a Node.js result for each page file update. Instead, thanks to
the `StripPageDefaultExport` transform, there are three versions of the
page chunks:
* client-side (strips page data exports);
* server-side (full);
* data server-side (strips page default export).

Instead of subscribing to the full server-side result, on hydration, the
client-side page separately subscribes to:
* client-side updates (already the case);
* data server-side updates (new).

This means that updating something that only affects the page component
will only cause a client-side update and **no Node.js re-rendering**,
while updating something that only affects the data will only cause a
server-side update.

~~I'm marking this as a draft for now as there are still a few areas to
test/investigate:~~
- [x] When something that is used in both the default page export and
data exports is changed, this will cause *two* HMR updates: one data
update, and one client-side chunk update. **The same case breaks in
Next.js, where we will receive a client-side update, but no server-side
update, ending up with an incorrect result.**
- [x] Differences between `getStaticProps/getServerSideProps`, as well
as `getInitialProps` (need to talk with @timneutkens about this) (see
https://github.com/vercel/next.js/pull/44523)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2023-01-04 16:54:34 +01:00
Alex Kirszenberg
f7f2db70bd Refactor the Next SSG transform to handle the inverse operation (vercel/turbo#2968)
## The original transform

The original behavior of the Next SSG transform is to remove `getServerSideProps`, `getStaticProps`, and `getStaticPaths` from Next.js page files so they can be bundled for the client. This is what enables the following code to work properly without advanced tree shaking:

```jsx
import db from "db";
import PostCounter from 

export default function Home(props) {
  return <>{props.posts.length} post(s)</>;
}

const postsPromise = db.getPosts();

export async function getStaticProps() {
  return {
    props: {
      posts: await postsPromise,
    },
  };
}
```

The transform is able to remove both `getStaticProps` and all its exclusive, transitive dependencies, so this is what the client would see:

```jsx
import PostCounter from "components/PostCounter";
export var __N_SSG = true;
export default function Home(props) {
    return __jsx(PostCounter, {
        count: props.posts.length
    });
}
```

## Adding the inverse operation

However, to support proper HMR for these data exports, we need to be able to execute somewhat of an inverse operation: remove the default component export, but preserve all the rest. This allows Turbopack to bundle server-side only declarations, only re-rendering when one of these changes, instead of re-rendering on any server-side and client-side change.

From our module above, the updated transform is now also able to generate the following:

```jsx
import db from "db";
const postsPromise = db.getPosts();
export async function getStaticProps() {
    return {
        props: {
            posts: await postsPromise
        }
    };
}
```

As you can see, this module is no longer importing the `PostCounter`, which means re-rendering will not invalidate when that counter changes. However, if the "db" module changes, we will still be able to detect a change and re-render.

## Other notes

* I renamed the transform from "next_ssg" to "next_transform_strip_page_exports". It's much more verbose, but hopefully also much clearer about what it does at a glance.
* I took the liberty to clean up and comment some parts of the transform to make it more easily understandable (at least for someone like me, who hasn't written a lot of SWC code). I also fixed a few bugs and edge cases.
* I brought over the tests from the transform in the Next.js and added a couple of them.
* For now, only the `StripDataExports` filter is used. A future PR will build on this and @ForsakenHarmony's https://github.com/vercel/turbo/pull/2949 PR to actually implement SSR/SSG HMR. 

## Reviewing guide

1. The crux of the change is the move (and refactor) of the next ssg transform from https://github.com/vercel/turbo/pull/2968/files#diff-133d73657647ed793ca4782a73552650b32ad565094b1e0faf452ad58705499b to https://github.com/vercel/turbo/pull/2968/files#diff-d6442fa6af9b66e581f062739dd6de2419f5e8f6f3d97cfa63518c72b0a9ee3e.
2. I also added the [errors.rs](https://github.com/vercel/turbo/pull/2968/files#diff-0f308375da4179c0ea5a0fcbd99593b56d6020cd7dec1694ed08f392f1637c09) and [fixture.rs](https://github.com/vercel/turbo/pull/2968/files#diff-6e23f34483fc17a27dfc630edb455ea95e28d5cb350468c2ba01384fbc3c116a) tests. I adapted fixture.rs to execute on the two transform filters: data exports and default export.
3. Most of the tests in `tests/` are copied from https://github.com/vercel/next.js/tree/canary/packages/next-swc/crates/core/tests. The changes I made are:
  i. https://github.com/vercel/turbo/pull/2968/files#diff-774abee6a1bf139c9ce55e226bf15b52e56ea091170ee5d6295c191fd8d793c7: made this one symmetric for both strip data and strip default transforms.
  ii. https://github.com/vercel/turbo/pull/2968/files#diff-4792266a264dc67da93748d2c6522917f860527a689891bd5f8f4add9841e7f6 wasn't supported before AFAIK.
  iii. https://github.com/vercel/turbo/pull/2968/files#diff-a3b12adbce1dec40f39ff8af13ffecbe7f6963e21bc402cef6332ecf5018877e similar to i.
2023-01-03 10:42:35 +00:00
Justin Ridgewell
87e4a467f9 Allow CombinedContentSource to need data without locking up (vercel/turbo#3124)
Currently when an individual `ContentSource` inside a `CombinedContentSource` requests additional vary data, the combined source will treat that source as the winner of the query. But, sometimes the vary data is necessary to determine that the content is not found by this source. And if that's the case, we'll hit a 404 when we should actually keep iterating.

This is exactly the case we're going to hit with redirect/rewrites. Redirects need to be the very first content source, and I also need query/header/cookie/hostname data in order to determine if a redirect applies. Without this, **every** request becomes a 404.
2022-12-23 04:08:56 +00:00
Justin Ridgewell
9a4fe596e0 Misc fixes to starting dev server (vercel/turbo#3121)
- The 10th attempt used to day "trying again" and then didn't try again because the iterator ended…
- Swaps a nested `.map() == Some(bool)` for a `and_then`
- Extracts into a helper function so code can early return without an `Option<Result>` wrapper.
2022-12-22 10:50:07 +00:00
Tobias Koppers
5b7bf96362 separate typescript with types from typescript transformed (vercel/turbo#3118)
fixes weird typescript errors caused by types being referenced by .ts
files
2022-12-22 05:27:02 +01:00
Justin Ridgewell
8e2672a7a9 Misc ContentSource changes (vercel/turbo#3120)
- Adds `details` to `SourceMapContentSource`
- Fixes `ty` of `SourceMapContentSource`
- Adds default `children` trait method that returns empty children
2022-12-22 04:15:57 +00:00
Tobias Koppers
63c6438a93 disable counting timer (vercel/turbo#3122) 2022-12-22 03:35:30 +01:00
Justin Ridgewell
16b5d73404 Fix retrying when port already bound (vercel/turbo#3114)
#3021
[removed](https://github.com/vercel/turbo/pull/3021/files#diff-c6405fb94033af4296b1f72626fb990aaf76f645b6ed0f7812c56fcad719cf0eL304-L306)
1 level of error wrapping, and the unwrapping code was not updated to
match.
2022-12-21 15:15:21 -05:00
Tobias Koppers
b4da5e00a8 update to latest next.js (vercel/turbo#3112)
* add GlobalError export to layout entry (see
https://github.com/vercel/next.js/pull/44066)
* update app manifest for CSS (see
https://github.com/vercel/next.js/pull/44168)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2022-12-21 20:44:18 +01:00
Tobias Koppers
1a2632d5e5 add rules to alter resolve/module context depending on context path (vercel/turbo#3108)
Fixes WEB-43
Closes vercel/turbo#3104
2022-12-21 18:56:52 +00:00