You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
12 months ago
|
import process from 'node:process'
|
||
|
import { writeIntoLog } from '../utils'
|
||
|
import { iconLogPath } from './src/path'
|
||
|
|
||
|
writeIntoLog(
|
||
|
'Icon Bundle',
|
||
|
`npx esno build/icon/src/core.ts ${process.argv.slice(-1)[0]}`,
|
||
|
iconLogPath,
|
||
|
)
|