mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Remove old website (#3194)
Move manual.md and style_guide.md into //std so they can be accessed from https://deno.land/std/manual.md Code for new website is https://github.com/denoland/deno_website2 Co-authored-by: Christian Moritz <chrmoritz@gmail.com>
This commit is contained in:
parent
f96aaa802b
commit
1d8f3cc896
26 changed files with 19 additions and 1704 deletions
|
@ -54,7 +54,7 @@ testPerm({ read: true }, async function lstatSyncSuccess(): Promise<void> {
|
|||
assert(!modulesInfo.isDirectory());
|
||||
assert(modulesInfo.isSymlink());
|
||||
|
||||
const i = Deno.lstatSync("website");
|
||||
const i = Deno.lstatSync("core");
|
||||
assert(i.isDirectory());
|
||||
assert(!i.isSymlink());
|
||||
});
|
||||
|
@ -138,7 +138,7 @@ testPerm({ read: true }, async function lstatSuccess(): Promise<void> {
|
|||
assert(!modulesInfo.isDirectory());
|
||||
assert(modulesInfo.isSymlink());
|
||||
|
||||
const i = await Deno.lstat("website");
|
||||
const i = await Deno.lstat("core");
|
||||
assert(i.isDirectory());
|
||||
assert(!i.isSymlink());
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue