mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
2a2ff96be1
This commit adds discovery of `.npmrc` files in user's homedir. This is not a perfect fix as it doesn't merge multiple `.npmrc` files together as per https://github.com/denoland/deno/issues/23954 but allows to fallback if no `.npmrc` file is discovered in the project root.
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
import { getValue, setValue } from "@denotest/basic";
|
|
import * as test from "@denotest2/basic";
|
|
|
|
console.log(getValue());
|
|
setValue(42);
|
|
console.log(getValue());
|
|
|
|
console.log(test.getValue());
|