astro-ghostcms/.pnpm-store/v3/files/ef/8b5dbeef33e3f5d78b146dadb62...

11 lines
270 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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)}`
)