Init(Core): add project to new repo

This commit is contained in:
2026-04-24 18:56:52 +03:30
commit b75246ac0f
195 changed files with 10747 additions and 0 deletions

5
postinstall.js Normal file
View File

@@ -0,0 +1,5 @@
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 });