Yoshiya Hinosawa
Yoshiya Hinosawa
This issue tracks the progress of running the test cases of [mocha](https://github.com/mochajs/mocha) repository. ### `test.node` category - [x] run [nps](https://www.npmjs.com/package/nps) (task runner used in the repo) - [x] [find-up](https://www.npmjs.com/package/find-up) doesn't...
The below script prints `{ kind: "create", paths: [ "/path/to/foo" ], flag: null }`, but that feels strange because it started watching the directory after it's created. ```js await Deno.mkdir("foo");...
I tested some patterns of custom scheme urls as input of Deno.emit, and I found the following 2 cause panic: ```ts let id = 'custom://a.ts'; await Deno.emit(id, { sources: {...
When you transpile the code which include Deno's unstable APIs, you need to specify "deno.unstable" lib in compilerOptions. ```ts await Deno.emit("https://deno.land/posts/v1.7/dig.ts", { compilerOptions: { lib: ["deno.unstable", "deno.window"], } }); ```...
ref: https://github.com/denoland/dotland/issues/1964
`deno_dom` module has `./wpt` submodule (which points to https://github.com/web-platform-tests/wpt/). When I click `wpt` folder in `https://deno.land/x/[email protected]`, it shows empty page https://deno.land/x/[email protected]/wpt
alternative approach to #1382 This PR checks that default export items match to named export items for each node compatible modules. This PR guarantees that the following 2 patterns of...
This issue tracks the issues for executing basic example of [vite](https://vitejs.dev/) in compat mode A typical workflow we try to support is: ```sh yarn create vite cd vite-project yarn yarn...