这是indexloc提供的服务,不要输入任何密码
Skip to content

Tags: dsvgit/turbo

Tags

turbopack-240125.1

Toggle turbopack-240125.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs: Update TLS info to be accurate (vercel#7097)

### Description

We actually build with rustls-tls and not native-tls

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->


Closes TURBO-2145

turbopack-240124.3

Toggle turbopack-240124.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(docs): remove sharp (vercel#7094)

### Description

Sharp is only needed if deploying standalone / hosting elsewhere. It's
provided by Vercel by default. Removing speeds up our install a bit.


Closes TURBO-2140

turbopack-240124.2

Toggle turbopack-240124.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(turbo): sort dependents and dependencies during normalization (ve…

…rcel#7018)

turbopack-240124.1

Toggle turbopack-240124.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update `swc_core` to `v0.87.28` (vercel#7027)

### Description

next.js counterpart: vercel/next.js#60876

### Testing Instructions

See vercel/next.js#60876

- Closes PACK-2106
- Closes PACK-2257

turbopack-240123.3

Toggle turbopack-240123.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add client_root for edge (vercel#7081)

### Description

Ensures edge compilation outputs the right asset urls. Currently in
Next.js with Turbopack enabled they show `/assets/file.hash.png` but it
should be relative to the `asset_prefix` and client path.

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->

---------

Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>

v1.11.4-canary.2

Toggle v1.11.4-canary.2's commit message
publish 1.11.4-canary.2 to registry

turbopack-240123.2

Toggle turbopack-240123.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(ecmascript): collect recoverable error after parse (vercel#7073)

### Description

Turbopack in next.js does not report parse errors for the input like 

```
function xyz() {
...
```

which expects to report 
```
Expected '}', got '<eof>'
```

Comparing upstream swc, the only difference is turbopack collect
recoveable error eagerly _before_ actual parsing, and then parse returns
a parsed program. (ref:
https://github.com/swc-project/swc/blob/979061f6babbbf855027b13eb574c5f3f7e24727/crates/swc_compiler_base/src/lib.rs#L62-L77)

PR fixes ordering of error collection as same as swc does. 

Confirmed next.js with this change now reports expected error. (Note:
doesn't mean tests are actually fixed, the output is not matching with
snapshot still)


Closes PACK-2274

turbopack-240122.1

Toggle turbopack-240122.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Dependabot needs to --squash, not --merge. (vercel#7036)

### Description

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->

turbopack-240121.1

Toggle turbopack-240121.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Dependabot needs to --squash, not --merge. (vercel#7036)

### Description

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->

turbopack-240119.2

Toggle turbopack-240119.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: next-swc CI check (vercel#7030)

Closes PACK-2260