mirror of
https://github.com/denoland/deno.git
synced 2025-02-02 20:55:35 -05:00
92f6188253
This PR: 1. Replaces `@test_util/std`-prefixed imports with `@std`. 2. Adds `@std/` import map entries to a few `deno.json` files.
10 lines
245 B
JSON
10 lines
245 B
JSON
{
|
|
"imports": {
|
|
"@test_util/": "../../test_util/",
|
|
"@std/": "../../test_util/std/"
|
|
},
|
|
"tasks": {
|
|
"setup": "deno run --allow-read --allow-write ./setup.ts",
|
|
"test": "deno test -A ../../cli/tests/node_compat/test.ts --"
|
|
}
|
|
}
|