0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/packages/standalone/scripts/web.ts
Juan Picado 15c694156a
fix eslint warnings (#2265)
* chore: reduce warnings

* chore: fix eslint warnings

* fix warning
2021-06-12 09:25:53 +02:00

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');