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