mirror of
https://github.com/chrononeko/chronocat.git
synced 2024-11-22 15:36:57 +00:00
19 lines
567 B
TypeScript
19 lines
567 B
TypeScript
|
import { cp, mkdir } from 'node:fs/promises'
|
||
|
import { join, resolve } from 'node:path'
|
||
|
|
||
|
void (async () => {
|
||
|
const distPath = resolve(
|
||
|
__dirname,
|
||
|
'../../build/dist/llqqntv1/LiteLoaderQQNT-Plugin-Chronocat',
|
||
|
)
|
||
|
const srcPath = join(distPath, 'src')
|
||
|
|
||
|
await mkdir(srcPath, { recursive: true })
|
||
|
await cp(join(__dirname, 'lib/index.js'), join(srcPath, 'main.js'))
|
||
|
await cp(join(__dirname, 'manifest.json'), join(distPath, 'manifest.json'))
|
||
|
await cp(
|
||
|
resolve(__dirname, '../docs/static/chronocat.png'),
|
||
|
join(distPath, 'chronocat.png'),
|
||
|
)
|
||
|
})()
|