runify

Runs browserify plugins and returns a Promise resolving with the generated source code.

MIT 1 个版本
安装
npm install runify
yarn add runify
pnpm add runify
bun add runify
README

Runify

Runs browserify plugins and returns a Promise resolving with the generated source code.

npm install runify

Usage

const runify = require('runify');
const combynify = require('combynify');

const source = `
  Hello world, from Combyne template
`;

async function main() {
  const source = await runify(source, combynify, 'index.html', {});
}

main();
版本列表
1.0.0 2019-02-22