PHP Classes

File: fwphp/glomodul/mkd/html2mkd/config/rollup.config.js

Recommend this page to a friend!
  Classes of Slavko Srakocic   B12 PHP FW   fwphp/glomodul/mkd/html2mkd/config/rollup.config.js   Download  
File: fwphp/glomodul/mkd/html2mkd/config/rollup.config.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: B12 PHP FW
Manage database records with a PDO CRUD interface
Author: By
Last change: Update of fwphp/glomodul/mkd/html2mkd/config/rollup.config.js
Date: 1 year ago
Size: 430 bytes
 

Contents

Class file image Download
import commonjs from 'rollup-plugin-commonjs' import replace from 'rollup-plugin-replace' import resolve from 'rollup-plugin-node-resolve' export default function (config) { return { input: 'src/turndown.js', name: 'TurndownService', output: config.output, external: ['jsdom'], plugins: [ commonjs(), replace({ 'process.browser': JSON.stringify(!!config.browser) }), resolve() ] } }