diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-05 16:22:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 14:22:13 +0000 |
commit | c678550a176ce5592d4b6e7ffb918e6926858a45 (patch) | |
tree | eb1a1f7ce99f95bf6e4086a75bc7f3739a5b23a1 /tests/testdata | |
parent | 15fce5b290d7dc3eb503a70bd8a10aaf72a09f5e (diff) |
BREAKING: remove "emit" and "map" from deno info output (#25468)
The map field has been empty for years now and we don't want the emit
file to be exposed so it allows us to iterate on making the cache
faster. Additionally, it's racy/unreliable to rely on this information.
Instead, people should emit the TS files themselves using tools like
deno_emit, typescript, esbuild, etc.
Closes https://github.com/denoland/deno/issues/17703
Diffstat (limited to 'tests/testdata')
-rw-r--r-- | tests/testdata/npm/cjs_with_deps/main_info_json.out | 2 | ||||
-rw-r--r-- | tests/testdata/npm/peer_deps_with_copied_folders/main_info_json.out | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/testdata/npm/cjs_with_deps/main_info_json.out b/tests/testdata/npm/cjs_with_deps/main_info_json.out index 4d8c1a5be..af1ef1351 100644 --- a/tests/testdata/npm/cjs_with_deps/main_info_json.out +++ b/tests/testdata/npm/cjs_with_deps/main_info_json.out @@ -42,8 +42,6 @@ } ], "local": "[WILDCARD]main.js", - "emit": null, - "map": null, "size": 325, "mediaType": "JavaScript", "specifier": "[WILDCARD]/main.js" diff --git a/tests/testdata/npm/peer_deps_with_copied_folders/main_info_json.out b/tests/testdata/npm/peer_deps_with_copied_folders/main_info_json.out index 48cb1f992..df6541aa8 100644 --- a/tests/testdata/npm/peer_deps_with_copied_folders/main_info_json.out +++ b/tests/testdata/npm/peer_deps_with_copied_folders/main_info_json.out @@ -42,8 +42,6 @@ } ], "local": "[WILDCARD]main.ts", - "emit": null, - "map": null, "size": 171, "mediaType": "TypeScript", "specifier": "file://[WILDCARD]/main.ts" |