diff options
author | Marvin Hagemeister <marvin@deno.com> | 2024-08-08 16:28:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 14:28:18 +0000 |
commit | 18b9b43c3631053e2c8b4c293b9e1f44dee7bfa8 (patch) | |
tree | 914e0b4dad0966aaaf6759f9d3c5e2820f3116f0 /cli/tools/init | |
parent | c94d1b10f86e888bd49439ae34c50b2e22ef887d (diff) |
chore: change property order in generated `deno.json` (#24953)
This moves all package-specific object keys right next to each other.
Diffstat (limited to 'cli/tools/init')
-rw-r--r-- | cli/tools/init/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |