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