Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/v2' into mszczepanski/fix-lazy…
Browse files Browse the repository at this point in the history
…-compilation
  • Loading branch information
marcins committed Jul 26, 2023
2 parents dcf207a + b4b982c commit b58f23e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/parcel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Parcel is a zero configuration build tool for the web. It combines a great out-o
## Features

- 😍 **Zero config** – Parcel supports many languages and file types out of the box, from web technologies like HTML, CSS, and JavaScript, to assets like images, fonts, videos, and more. It has a built-in dev server with hot reloading, beautiful error diagnostics, and much more. No configuration needed!
- ⚡️ **Lighting fast** – Parcel's JavaScript compiler is written in Rust for native performance. Your code is built in parallel using worker threads, utilizing all of the cores on your machine. Everything is cached, so you never build the same code twice. It's like using watch mode, but even when you restart Parcel!
- ⚡️ **Lightning fast** – Parcel's JavaScript compiler is written in Rust for native performance. Your code is built in parallel using worker threads, utilizing all of the cores on your machine. Everything is cached, so you never build the same code twice. It's like using watch mode, but even when you restart Parcel!
- 🚀 **Automatic production optimization** – Parcel optimizes your whole app for production automatically. This includes tree-shaking and minifying your JavaScript, CSS, and HTML, resizing and optimizing images, content hashing, automatic code splitting, and much more.
- 🎯 **Ship for any target** – Parcel automatically transforms your code for your target environments. From modern and legacy browser support, to zero config JSX and TypeScript compilation, Parcel makes it easy to build for any target – or many!
- 🌍 **Scalable** – Parcel requires zero configuration to get started. But as your application grows and your build requirements become more complex, it's possible to extend Parcel in just about every way. A simple configuration format and powerful plugin system that's designed from the ground up for performance means Parcel can support projects of any size.
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/node-resolver-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ impl Resolver {

#[cfg(target_arch = "wasm32")]
#[napi]
pub fn get_invalidations(&self, _: String) -> napi::Result<JsInvalidations> {
pub fn get_invalidations(&self, _path: String) -> napi::Result<JsInvalidations> {
panic!("getInvalidations() is not supported in Wasm builds")
}

Expand Down

0 comments on commit b58f23e

Please sign in to comment.