Skip to content

Commit

Permalink
remove realPath
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed Jun 9, 2021
1 parent 9b127b9 commit 6731ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions funql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const runPlayground = async () => {
const app = new Application();
const __dirname = new URL(".", import.meta.url).pathname;
const buildFolder = `${__dirname}playground/build`;
const realPath = await Deno.realPath(buildFolder);

const play = await exists("./.play");

Expand All @@ -43,7 +42,7 @@ const runPlayground = async () => {
console.group();
console.log();
console.log("realPath, buildFolder ================== realPath,");
console.log(realPath, buildFolder);
console.log(buildFolder);
console.log("END ------------------ END");
console.log();
console.groupEnd();
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ every schema should have 4 seprate things :
- After that just run this line:

```shell
deno install -qAf --allow-read --allow-write --unstable https://deno.land/x/[email protected].17/funql.ts
deno install -qAf --allow-read --allow-write --unstable https://deno.land/x/[email protected].18/funql.ts
```

## How to Use It
Expand Down

0 comments on commit 6731ad0

Please sign in to comment.