mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 07:41:53 +02:00
10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
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)}`
|
|
)
|