Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

Commit 1aa8f63

Browse files
committed
fix: preserve original JSON order
1 parent 6aefc96 commit 1aa8f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct PackageManifest {
2929
name: String,
3030
version: String,
3131
#[serde(flatten)]
32-
extra_fields: HashMap<String, serde_json::Value>,
32+
extra_fields: serde_json::Value,
3333
}
3434

3535
fn read_lerna_manifest(root: &Path) -> Result<LernaManifest, Box<dyn Error>> {

0 commit comments

Comments
 (0)