- Added
--skip-pjs
|--skip-polkadotjs
to skip download/running a polkadot-js instance. Handy when you already have a explorer running in your system - Changes to the code structure to make room for future additions
- Made
--tmp
exclusive to--path
and--fresh
- Replace bun -> yarn as it's now a hard dependency for polkadot-js/apps
- Remove dependency on
cURL
. We use reqwest now. - Concurrent downloads for
pjs
andpolkadot
exe.
- No functional changes. Update to include newer binary in crates.io
- Removed system dependency on unzip. The only requirement is to have
yarn
on your system PATH - Removed restriction of not being able to use
--path
with--tmp
or--fresh
. There's no reason why--path
should not be able to work with the aforementioned flags.--path --tmp
is equivalent to--path --fresh
except the latter will not remove the directory at the end of the process --tmp
without--path
creates a dir in/tmp
and is cleaned up at the end of the process.
- Improved cli user experience
- Added
--explorer
or--pjs
cli option to only run the explorer without running a polkadot sync node Useful when you want to use local-polkadot just as apolkadot-js
apps starter.