Since I’m about to start working like (even more) a madman (thread), I figured I’d kick off this thread about releases, especially for devs not yet using the Juno ecosystem.
Juno v0.0.35
Last week, I released version v0.0.35
, featuring two major updates:
- The ability to launch Satellites or Orbiters (analytics) in any public subnet
- Support for transferring ICP from devs’ wallets to the outside world
CLI v0.0.81
Today, I published a community-requested feature for the CLI: the ability to define pre- and post-deploy scripts.
Super handy for automatically building your app before running juno deploy
.
import { defineConfig } from '@junobuild/config';
/** @type {import('@junobuild/config').JunoConfig} */
export default defineConfig({
satellite: {
id: 'ck4tp-aaaaa-aaaaa-abbbb-cai',
source: 'build',
predeploy: [
'npm run lint',
'npm run build'
],
postdeploy: ['node hello.mjs']
}
});
Until next time!