Releases: junobuild/cli
Releases · junobuild/cli
v0.2.14
v0.2.13
Features
- Generate and append new
juno:package
custom section to WASM when building serverless functions in Rust (still supportjuno:build
for backwards compatibility).
v0.2.12
Features
- Support for configuring projects for development using either a production-like setup or a minimal setup via
juno dev start
, even for projects that are not yet configured.
Note: As a result, the configuration templates have been updated to include both production and development settings.
Example:
import {defineConfig} from '@junobuild/config';
export default defineConfig({
satellite: {
ids: {
development: '<DEV_SATELLITE_ID>',
production: '<PROD_SATELLITE_ID>'
},
source: '<SOURCE>',
predeploy: ['<COMMAND> build']
}
});
v0.2.11
Features
- Don't exit hot reload while wathcing build on JS/TS compile errors.
v0.2.10
Features
- Use
@junbuild/[email protected]
which supports fetching version using the public custom sectionjuno:package
with fallback on deprecatedversion()
functions.
v0.2.9
Features
- Add metadata (name of the project, version, etc.) as
banner
of themjs
bundled when runningjuno dev build
for JS/TS. Those are then use by the Docker container when bundling to WASM to generate the public custom sectionjuno:package
. - Get version from
juno:package
when runningjuno --version
.
Refactoring
- Extract utils to read (developer) package json.
Build
- Bump dependencies.
v0.2.8
Features
- Print success or errors on
juno config
.
Fix
- Mode was not interpreted when running e.g.
juno config --mode staging
.
v0.2.7
Features
- Add all hooks and assertions to Sputnik templates.
v0.2.6
Features
- Print a message when starting local emulator.
v0.2.5
Features
- Add support for
juno dev start --watch
with the same options asjuno dev build
.
Fixes
- Fixed recursive constant imports that caused
undefined
to appear instead of section titles in the help output.