From 18b9b43c3631053e2c8b4c293b9e1f44dee7bfa8 Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Thu, 8 Aug 2024 16:28:18 +0200 Subject: chore: change property order in generated `deno.json` (#24953) This moves all package-specific object keys right next to each other. --- cli/tools/init/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/tools/init/mod.rs b/cli/tools/init/mod.rs index bc83bfa2b..c62d93289 100644 --- a/cli/tools/init/mod.rs +++ b/cli/tools/init/mod.rs @@ -54,13 +54,13 @@ Deno.test(function addTest() { &json!({ "name": project_name, "version": "0.1.0", + "exports": "./mod.ts", "tasks": { "dev": "deno test --watch mod.ts" }, "imports": { "@std/assert": "jsr:@std/assert@1" }, - "exports": "./mod.ts" }), )?; } else { -- cgit v1.2.3