kopia lustrzana https://github.com/Tldraw/Tldraw
59 wiersze
1.8 KiB
TypeScript
59 wiersze
1.8 KiB
TypeScript
import path from 'path'
|
|
|
|
const displayRelative = (from: string, to: string) => {
|
|
const outpath = path.relative(from, to)
|
|
if (!outpath.match(/^\./)) {
|
|
return `./${outpath}`
|
|
}
|
|
return outpath
|
|
}
|
|
|
|
type LogDef =
|
|
| { cmd: 'remove'; env: string; args: { target: string } }
|
|
| { cmd: 'copy'; env: string; args: { source: string; dest: string } }
|
|
| { cmd: 'esbuild'; env: string; args: { entryPoints: string[] } }
|
|
| { cmd: 'esbuild:success'; env: string; args: any }
|
|
| { cmd: 'esbuild:error'; env: string; args: { error: string } }
|
|
| { cmd: 'esbuild:serve'; env: string; args: { host: string; port: number | string } }
|
|
|
|
export function log(def: LogDef) {
|
|
const printStderr = (icon: string, cmd: string, ...args: unknown[]) => {
|
|
console.error(`${icon} [${def.env ?? 'unknown'}/${cmd}]`, ...args)
|
|
}
|
|
|
|
if (def.cmd === 'remove') {
|
|
const { target } = def.args
|
|
printStderr('🗑 ', 'remove', displayRelative(process.cwd(), target))
|
|
} else if (def.cmd === 'copy') {
|
|
const { source, dest } = def.args
|
|
printStderr(
|
|
'🏠',
|
|
'copy',
|
|
`${displayRelative(process.cwd(), source)} -> ${displayRelative(process.cwd(), dest)}`
|
|
)
|
|
} else if (def.cmd === 'esbuild') {
|
|
printStderr(
|
|
'🤖',
|
|
'esbuild',
|
|
`${def.args.entryPoints.map((pathname) => displayRelative(process.cwd(), pathname))}`
|
|
)
|
|
} else if (def.cmd === 'esbuild:success') {
|
|
printStderr('✅', `esbuild`, `build successful (${new Date().toISOString()})`)
|
|
} else if (def.cmd === 'esbuild:error') {
|
|
printStderr(`❌`, `esbuild`, `error`)
|
|
console.error(def.args.error)
|
|
} else if (def.cmd === 'esbuild:serve') {
|
|
const { host = 'localhost', port } = def.args
|
|
printStderr(`🌎`, `esbuild`, `serving <http://${host}:${port}>`)
|
|
} else {
|
|
// @ts-ignore
|
|
printStderr(`❓`, def.cmd, JSON.stringify(def.args))
|
|
}
|
|
}
|
|
|
|
export function logEnv(env: string) {
|
|
return (opts: any) => {
|
|
log({ ...opts, env })
|
|
}
|
|
}
|