All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.scripts.create-plugin-list.js Maven / Gradle / Ivy

There is a newer version: 3.4.15
Show newest version
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)}`
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy