bizihive/postinstall.js
Deltora72 2b0aaa8a30 Huge update, mostly to profile + translations
# translations system updated
# profile ad form ready (almost)
# general bug fixes
2023-04-23 15:09:05 +04:30

8 lines
275 B
JavaScript

const fse = require('fs-extra');
const path = require('path');
const topDir = __dirname;
fse.emptyDirSync(path.join(topDir, 'public', 'tinymce'));
fse.copySync(path.join(topDir, 'node_modules', 'tinymce'), path.join(topDir, 'public', 'tinymce'),
{
overwrite: true
});