← Package directory
Available on winget

Install dist

📦 shippable application packaging

Install with winget
winget install --id axodotdev.dist
Upgrade
winget upgrade --id axodotdev.dist
Uninstall
winget uninstall --id axodotdev.dist

About dist

📦 shippable application packaging

What's new in 0.31.0

Release Notes This release includes several new features, including the major introduction of mirrors that installers can fallback to. Simple hosting (aka mirrors) This release adds a new hosting method, simple, which supports static file hosting. This allows you to host your artifacts on the hosting provider of your choice so long as it follows a similar URL structure to GitHub Releases hosting. It can also be used alongside GitHub hosting; if you specify more than one hosting provider, the secondary hosting source will be used as a mirror. The priority is determined by the order of the keys in your config. For example, this will use GitHub first and fall back to your static host if GitHub is unavailable: hosting = ["github", "simple"] simple-download-url = "https://static.myapp.com/{tag}" And this will use your static host first and fall back to GitHub if necessary: hosting = ["simple", "github"] simple-download-url = "https://static.myapp.com/{tag}" For more information, see the docs. Note: currently, dist won't upload artifacts to static hosts; it expects you to handle that, either manually or via writing a custom job. - impl @Gankra Add "simple" hosting style - impl @mistydemeo feat(homebrew): mirror support with multi-urls Disabling npm-shrinkwrap.json for npm installers Currently, the npm installer includes an npm-shrinkwrap.json to specify the exact versions of its runtime dependencies as used at the time dist was released. Since some users would prefer looser dependency specification, this release provides an option to disable this. For more information, see the do...

Read release notes

Version history

Version Updated Notes
0.31.0 Unknown Release Notes This release includes several new features, including the major introduction of mirrors that installers can fallback to. Simple hosting (aka mirrors) This release adds a new hosting method, simple, which su...
0.30.3 Unknown Release Notes This release contains a few minor bugfixes. It also updates dependencies, including a rimraf upgrade that resolves a CVE in glob. This vulnerability was not exploitable in the way dist used rimraf. Fixes -...