mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
1cd2267500
This commit changes "deno info" subcommand logic. - Modules are no longer loaded into V8 isolate - analysis is done using ModuleGraph. - Removed deno_core::Deps structure. - Modules are no longer type-checked and transpiled - "compiled" file is shown only if it is already available. - Added number of unique dependencies for root module. - Changed tree output: - file size is shown next to the dependency - repeated dependencies are marked with "*" - used less spaces in prefix to save terminal width
34 lines
No EOL
764 B
Text
34 lines
No EOL
764 B
Text
{
|
|
"local": "[WILDCARD]005_more_imports.ts",
|
|
"fileType": "TypeScript",
|
|
"compiled": null,
|
|
"map": null,
|
|
"depCount": 3,
|
|
"deps": {
|
|
"name": "file://[WILDCARD]/005_more_imports.ts",
|
|
"size": 211,
|
|
"totalSize": 757,
|
|
"deps": [
|
|
{
|
|
"name": "file://[WILDCARD]/subdir/mod1.ts",
|
|
"size": 320,
|
|
"totalSize": 546,
|
|
"deps": [
|
|
{
|
|
"name": "file://[WILDCARD]/subdir/subdir2/mod2.ts",
|
|
"size": 163,
|
|
"totalSize": 226,
|
|
"deps": [
|
|
{
|
|
"name": "file://[WILDCARD]/subdir/print_hello.ts",
|
|
"size": 63,
|
|
"totalSize": 63,
|
|
"deps": []
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |