diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-06-14 03:07:02 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-06-14 15:20:16 +0800 |
commit | 448852a474126c42d6d078d0bb82258b7ecc0750 (patch) | |
tree | 413596646054970a89c7533e6335594ec13ec4ee /deno/tools | |
parent | 3b8cde9ae3d5480d808d16f729b82b66bf2c1602 (diff) | |
download | crupest-448852a474126c42d6d078d0bb82258b7ecc0750.tar.gz crupest-448852a474126c42d6d078d0bb82258b7ecc0750.tar.bz2 crupest-448852a474126c42d6d078d0bb82258b7ecc0750.zip |
deno & nvim: turn back to use deno fmt instead of prettier.
Diffstat (limited to 'deno/tools')
-rw-r--r-- | deno/tools/deno.json | 2 | ||||
-rw-r--r-- | deno/tools/template.ts | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/deno/tools/deno.json b/deno/tools/deno.json index 1b2cf32..355046a 100644 --- a/deno/tools/deno.json +++ b/deno/tools/deno.json @@ -3,6 +3,6 @@ "tasks": { }, "imports": { - "mustache": "npm:mustache@^4.2.0", + "mustache": "npm:mustache@^4.2.0" } } diff --git a/deno/tools/template.ts b/deno/tools/template.ts index 0b043a1..1b67eb8 100644 --- a/deno/tools/template.ts +++ b/deno/tools/template.ts @@ -73,7 +73,9 @@ export class TemplateDir { generate(vars: Record<string, string>, generatedDir?: string) { console.log( - `Generating, template dir: ${this.dir}, generated dir: ${generatedDir ?? "[dry-run]"}:`, + `Generating, template dir: ${this.dir}, generated dir: ${ + generatedDir ?? "[dry-run]" + }:`, ); const undefinedVars = this.allNeededVars().filter((v) => !(v in vars)); |