From 1bd6db11d22c737b6ba13fc6984ba4bbb36127d9 Mon Sep 17 00:00:00 2001 From: Mqxx <62719703+Mqxx@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:23:10 +0200 Subject: [PATCH] renamed .build to config --- {.build => config}/build.ts | 0 deno.json | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename {.build => config}/build.ts (100%) diff --git a/.build/build.ts b/config/build.ts similarity index 100% rename from .build/build.ts rename to config/build.ts diff --git a/deno.json b/deno.json index bbbc946..e3ca570 100644 --- a/deno.json +++ b/deno.json @@ -1,9 +1,9 @@ { "tasks": { - "build": "deno run -A ./.build/build.ts", - "build:watch": "deno run -A ./.build/build.ts --watch", - "build:dev": "deno run -A ./.build/build.ts --develope", - "build:dev:watch": "deno run -A ./.build/build.ts --develope --watch", + "build": "deno run -A ./config/build.ts", + "build:watch": "deno run -A ./config/build.ts --watch", + "build:dev": "deno run -A ./config/build.ts --develope", + "build:dev:watch": "deno run -A ./config/build.ts --develope --watch", "lint": "deno lint", "test": "deno test -A --check --reload --doc --allow-none --junit-path=\"./report.xml\"" },