From c65d2defdff0424110888228caabd354179246b3 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Sun, 8 Sep 2024 23:03:56 +0200 Subject: [PATCH] syntax edit engine.js --- utils/engine.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/engine.js b/utils/engine.js index 78902c8..54e05b3 100644 --- a/utils/engine.js +++ b/utils/engine.js @@ -1,8 +1,8 @@ -import { join } from "jsr:@std/path@0.224.0/path/mod.ts"; -import { emptyDir } from "jsr:@std/path@0.224.0/fs/empty_dir.ts"; +import { join } from "jsr:@std/path@0.224.0"; +import { emptyDir } from "jsr:@std/path@0.224.0"; import { parse, stringify } from "npm:yaml"; -import { exists } from "jsr:@std/path@0.224.0/fs/exists.ts"; -import { copy } from "jsr:@std/path@0.224.0/fs/copy.ts"; +import { exists } from "jsr:@std/fs@0.224.0"; +import { copy } from "jsr:@std/fs@0.224.0"; const SRC_DIR = "./src"; const DEST_DIR = "./dist";