mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
6 lines
285 B
TypeScript
6 lines
285 B
TypeScript
const path = require('path');
|
|
const fse = require('fs-extra');
|
|
const { staticPath, manifest, manifestFiles } = require('@verdaccio/ui-theme')();
|
|
fse.copySync(staticPath, path.join(__dirname, '../dist/static'));
|
|
// eslint-disable-next-line no-console
|
|
console.log('theme files copied');
|