Skip to content

Commit 66a30f7

Browse files
committed
♻️ biome format
1 parent 863cd99 commit 66a30f7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

bin/cli.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import {main} from "../dist/index.mjs";
1+
import { main } from "../dist/index.mjs";
22

3-
main();
3+
main();

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"build": "unbuild",
1818
"start": "node ./bin/cli.mjs",
1919
"version:set": "pnpm exec lerna version",
20-
"lint": "biome lint ./src",
21-
"format": "biome format --write ./src",
22-
"check": "biome check ./src",
23-
"check:write": "biome check --write ./src",
24-
"check:ci": "biome ci ./src"
20+
"lint": "biome lint ./src ./bin",
21+
"format": "biome format --write ./src ./bin",
22+
"check": "biome check ./src ./bin",
23+
"check:write": "biome check --write ./src ./bin",
24+
"check:ci": "biome ci ./src ./bin"
2525
},
2626
"author": "@drumath2237",
2727
"license": "Apache-2.0",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { log } from "node:console";
22
import { mkdir } from "node:fs/promises";
33
import path from "node:path";
4+
import { fileURLToPath } from "node:url";
45
import { input, select } from "@inquirer/prompts";
56
import { copy, readJSON, writeJson } from "fs-extra/esm";
6-
import { fileURLToPath } from "node:url";
77

88
export const main = async (): Promise<void> => {
99
const projectName = await input({

0 commit comments

Comments
 (0)