diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-16 09:12:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-16 13:12:52 +0000 |
commit | 57cd2951f193b02cbd3fb15f0ee14d83107a2855 (patch) | |
tree | 129294ae1f462a40bd75de5c88efa7982aed19c5 /cli/tools/init/mod.rs | |
parent | 105d27bc7db5c0d2fd18cb26f41bd3193be74639 (diff) |
feat(config/jsr): add license field (#25056)
1. Adds a new "license" field.
1. Adds this field by default when doing `deno init --lib`
Diffstat (limited to 'cli/tools/init/mod.rs')
-rw-r--r-- | cli/tools/init/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tools/init/mod.rs b/cli/tools/init/mod.rs index 6d442198e..b9ae803c7 100644 --- a/cli/tools/init/mod.rs +++ b/cli/tools/init/mod.rs @@ -138,6 +138,7 @@ Deno.test(function addTest() { "tasks": { "dev": "deno test --watch mod.ts" }, + "license": "MIT", "imports": { "@std/assert": "jsr:@std/assert@1" }, |