mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
const fse = require('fs-extra');
|
||
|
const uiTheme = require('@verdaccio/ui-theme');
|
||
|
fse.copySync(uiTheme(), path.join(__dirname, '../dist/static'));
|
||
|
// eslint-disable-next-line no-console
|
||
|
console.log('theme files copied');
|