Skip to content

Commit

Permalink
just add log
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed Jun 9, 2021
1 parent e39e129 commit 9b127b9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion funql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,20 @@ const runPlayground = async () => {
play && (await Deno.remove("./.play", { recursive: true }));

// await generatePlay();
await copy(realPath, "./.play");
/**
* Please remove log after debug
* @author syd
* Please remove log after debug
*/
console.group();
console.log();
console.log("realPath, buildFolder ================== realPath,");
console.log(realPath, buildFolder);
console.log("END ------------------ END");
console.log();
console.groupEnd();

await copy(buildFolder, "./.play");

console.log(" Playgroud start at http://localhost:1366/ ");
app
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].16/funql.ts
deno install -qAf --allow-read --allow-write --unstable https://deno.land/x/[email protected].17/funql.ts
```

## How to Use It
Expand Down

0 comments on commit 9b127b9

Please sign in to comment.