Front page

This commit is contained in:
Senad Uka
2023-07-01 10:42:40 +02:00
parent 89a76e0e72
commit 6833976d9b
1702 changed files with 292138 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { corePlugins } from '../src/corePlugins'
import fs from 'fs'
import path from 'path'
let corePluginList = Object.keys(corePlugins)
fs.writeFileSync(
path.join(process.cwd(), 'src', 'corePluginList.js'),
`export default ${JSON.stringify(corePluginList)}`
)