We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b733d commit 0abf4b3Copy full SHA for 0abf4b3
2 files changed
cli/CHANGELOG.md
@@ -12,6 +12,7 @@
12
- Fix corrupted `mops.lock` file causing an unhandled crash instead of a helpful error message
13
- Fix `mops sources` resolving package config from wrong directory in some contexts
14
- Harden lock file integrity check against package ID prefix collisions
15
+- `mops build` now reports invalid canister names instead of silently ignoring them
16
- Document `baseDir`, `readme`, and `dfx` fields in `[package]` config
17
18
## 2.4.0
cli/commands/add.ts
@@ -105,7 +105,7 @@ export async function add(
105
verbose: verbose,
106
});
107
if (!res) {
108
- return;
+ process.exit(1);
109
}
110
} else if (!pkgDetails.path) {
111
let res = await installMopsDep(pkgDetails.name, pkgDetails.version, {
0 commit comments