v0.0.41
peterpeterparker
released this
10 Nov 15:25
·
240 commits
to main
since this release
Features
- Gzip
js
,mjs
, andcss
assets from the source folder before uploading to ensure optimal performance ** - Introducing new spinner UI for a more compact and enjoyable upload experience
- Exclude
.DS_Store
files on Mac andThumbs.db
files on Windows from the list of files to deploy - Skip files with a size of 0KB during the deployment process
- Added support for
juno --help
to provide command-line usage information
Fix
- Implemented a workaround for certification edge cases during the upload process until the next Satellite version is released
- Fixed a typo in the reset message
Build
- Updated all dependencies to their latest versions.
- Added ESLint and GitHub Actions to check for errors on pull requests.
** By default, the CLI searches for JavaScript (js), ES Module (mjs), and CSS (css) files in the source folder and optimizes them with Gzip compression. You can customize this behavior by either turning it off or providing a different file matching pattern using glob syntax by adding a gzip
entry to your juno.json
file.
{
satelliteId: string;
...
gzip?: string | false;
}