-
Notifications
You must be signed in to change notification settings - Fork 637
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
path.resolve depends on cwd #1136
Comments
I think we should fix this before Std. Lib. reaching stability. Do we have any ideas on how this can be solved? |
import { resolve, dirname } from "https://deno.land/[email protected]/path/mod.ts";
const resolved = resolve("foo");
console.log(resolved);
const cwd = dirname(resolved);
console.log(cwd); What is the expected permission requirement for |
IIUC it's for |
Note: Deno runtime is updating |
Closing as ref: denoland/deno#27192 |
Many applications still want path resolving functionality without this dependency.
Ref #685
Ref #643
The text was updated successfully, but these errors were encountered: