From 9b127b9496f17847548b1f25ab6375ab15550f4d Mon Sep 17 00:00:00 2001 From: Syd Amir Date: Wed, 9 Jun 2021 12:59:13 +0430 Subject: [PATCH] just add log --- funql.ts | 15 ++++++++++++++- readme.md | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/funql.ts b/funql.ts index affbd230..f81c8ba8 100644 --- a/funql.ts +++ b/funql.ts @@ -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 diff --git a/readme.md b/readme.md index 3b72f365..bb3f08b2 100644 --- a/readme.md +++ b/readme.md @@ -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/funql@0.0.16/funql.ts +deno install -qAf --allow-read --allow-write --unstable https://deno.land/x/funql@0.0.17/funql.ts ``` ## How to Use It