mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
0709c051f8
Adds an experimental unstable built-in package manager to Deno, but it is currently not usable because the registry infrastructure hasn't been setup and it points to a non-existent url by default. The default registry url can be configured via the `DENO_REGISTRY_URL` environment variable.
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { Other } from "jsr:@denotest/module_graph@1/other.ts";
|
|
import version from "jsr:@denotest/no_module_graph@^0.1/mod.ts";
|
|
|
|
export default {
|
|
version,
|
|
other: new Other(),
|
|
};
|