File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- import { main } from "../dist/index.mjs" ;
1
+ import { main } from "../dist/index.mjs" ;
2
2
3
- main ( ) ;
3
+ main ( ) ;
Original file line number Diff line number Diff line change 17
17
"build" : " unbuild" ,
18
18
"start" : " node ./bin/cli.mjs" ,
19
19
"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 "
25
25
},
26
26
"author" : " @drumath2237" ,
27
27
"license" : " Apache-2.0" ,
Original file line number Diff line number Diff line change 1
1
import { log } from "node:console" ;
2
2
import { mkdir } from "node:fs/promises" ;
3
3
import path from "node:path" ;
4
+ import { fileURLToPath } from "node:url" ;
4
5
import { input , select } from "@inquirer/prompts" ;
5
6
import { copy , readJSON , writeJson } from "fs-extra/esm" ;
6
- import { fileURLToPath } from "node:url" ;
7
7
8
8
export const main = async ( ) : Promise < void > => {
9
9
const projectName = await input ( {
You can’t perform that action at this time.
0 commit comments