summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compat/import_map_https_imports.mjs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-09-03 18:19:30 +0200
committerGitHub <noreply@github.com>2022-09-03 18:19:30 +0200
commite324151520c62c9503e5e38da66827cd7815ea14 (patch)
tree51449e9ea202b758a4ac74210b97f6c9b65d26e7 /cli/tests/testdata/compat/import_map_https_imports.mjs
parentfc4025c878a7986576f693ed3ad297212f6a99de (diff)
BREAKING(unstable): remove --compat mode (#15678)
This commit removes "compat" mode. We shipped support for "npm:" specifier support in v1.25 and that is preferred way to interact with Node code that we will iterate and improve upon.
Diffstat (limited to 'cli/tests/testdata/compat/import_map_https_imports.mjs')
-rw-r--r--cli/tests/testdata/compat/import_map_https_imports.mjs7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/tests/testdata/compat/import_map_https_imports.mjs b/cli/tests/testdata/compat/import_map_https_imports.mjs
deleted file mode 100644
index d8c2a89c2..000000000
--- a/cli/tests/testdata/compat/import_map_https_imports.mjs
+++ /dev/null
@@ -1,7 +0,0 @@
-import { sortBy } from "std/collections/sort_by.ts";
-import { findSingle } from "https://deno.land/std@0.126.0/collections/find_single.ts";
-import os from "node:os";
-
-console.log(sortBy([2, 3, 1], (it) => it));
-console.log(findSingle([2, 3, 1], (it) => it == 2));
-console.log("arch", os.arch());