Skip to content

Commit

Permalink
fix: named export
Browse files Browse the repository at this point in the history
  • Loading branch information
yanquanfahei committed Mar 5, 2023
1 parent de4e659 commit 38eb4b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { resolve, dirname } from 'node:path'
import { fileURLToPath } from 'node:url'
import { copySync, existsSync, mkdirSync, readJsonSync, writeJsonSync } from 'fs-extra'
import * as fsExtra from 'fs-extra'
import { intro, text, select, outro } from '@clack/prompts'
import color from 'picocolors'
import validatePkg from 'validate-npm-package-name'
import parseArgs from 'minimist'
import boxen from 'boxen'

const { copySync, existsSync, mkdirSync, readJsonSync, writeJsonSync } = fsExtra

const log = console.log

export interface ITemplateItem {
Expand Down

0 comments on commit 38eb4b3

Please sign in to comment.