source: frontend/node_modules/tailwindcss/scripts/create-plugin-list.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 270 bytes
RevLine 
[9af201e]1import { corePlugins } from '../src/corePlugins'
2import fs from 'fs'
3import path from 'path'
4
5let corePluginList = Object.keys(corePlugins)
6
7fs.writeFileSync(
8 path.join(process.cwd(), 'src', 'corePluginList.js'),
9 `export default ${JSON.stringify(corePluginList)}`
10)
Note: See TracBrowser for help on using the repository browser.