1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: change property order in generated deno.json (#24953)

This moves all package-specific object keys right next to each other.
This commit is contained in:
Marvin Hagemeister 2024-08-08 16:28:18 +02:00 committed by GitHub
parent c94d1b10f8
commit 18b9b43c36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {