diff --git a/Cargo.toml b/Cargo.toml index 790c337..c9a8539 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["esparse", "parcel"] +members = ["esparse", "pax"] [profile.release] lto = true diff --git a/README.md b/README.md index 3fde950..9d0d417 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Parcel Redux +# Pax The fastest JavaScript bundler in the galaxy. Fully supports ECMAScript module syntax (`import`/`export`) in addition to CommonJS `require()`. @@ -20,18 +20,18 @@ You wait a few seconds, hit ⌘R again, and your changes finally show Rinse. Repeat. Ten cycles later, things are working again. You've succeeded. It's time to `git commit`. But you spent **more time waiting than working**. And it's your bundler's fault. -Parcel Redux is a bundler. But you'll never beat it. Why? +Pax is a bundler. But you'll never beat it. Why? - It knows exactly enough about JavaScript to handle dependency resolution. It doesn't even bother parsing most of your source code. - It's fully parallelized, so it can make the most of your cores. -- It's minimal. It doesn't support plugins +- It's minimal. It doesn't support plugins or -Don't waste time waiting for your bundler to do its thing. Use Parcel Redux while you're developing, and **iterate to your heart's content**. Use your super-cool, magical, slow-as-molasses bundler for releases, when you don't care how long it takes to run. +Don't waste time waiting for your bundler to do its thing. Use Pax while you're developing, and **iterate to your heart's content**. Use your super-cool, magical, slow-as-molasses bundler for releases, when you don't care how long it takes to run. # How do I get it? ```sh -> cargo install parcel +> cargo install pax ``` If you don't have `cargo`, install it with [https://rustup.rs](https://rustup.rs/). @@ -49,26 +49,26 @@ exports.square = x => x * x ``` ```sh -> parcel index.js parcel.js +> pax index.js bundle.js ``` -And then `node parcel.js` or `