From 0e4d1cb5f9a3645f6da480b2b8540568fa69d675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 27 Mar 2024 17:51:52 +0000 Subject: feat(init): use jsr specifier for @std/assert (#23073) This commit changes "deno init" subcommand to use "jsr:" specifier for standard library "assert" module. It is unversioned, but we will change it to `@^1` once `@std/assert` release version 1.0. This allows us to start decoupling `deno` and `deno_std` release. The release scripts have been updated to take that into account. --- tests/testdata/jsr/registry/@std/assert/0.220.1_meta.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/testdata/jsr/registry/@std/assert/0.220.1_meta.json (limited to 'tests/testdata/jsr/registry/@std/assert/0.220.1_meta.json') diff --git a/tests/testdata/jsr/registry/@std/assert/0.220.1_meta.json b/tests/testdata/jsr/registry/@std/assert/0.220.1_meta.json new file mode 100644 index 000000000..677928167 --- /dev/null +++ b/tests/testdata/jsr/registry/@std/assert/0.220.1_meta.json @@ -0,0 +1,6 @@ +{ + "exports": { + ".": "./mod.ts", + "./assert_equals": "./assert_equals.ts" + } +} -- cgit v1.2.3