@ms-cloudpack/bundler-plugin-rollup
v0.15.23
Published
A cloudpack plugin for abstracting rollup.
Downloads
2,103
Keywords
Readme
@ms-cloudpack/bundler-plugin-rollup
Provides a Cloudpack bundler abstraction around the Rollup bundler.
Usage
async function bundlePackage(options)
import { bundlePackage } from '@ms-cloudpack/bundler';
async function start() {
const result = await bundlePackage({
packagePath: process.cwd(),
outputPath: path.join(process.cwd(), 'dist'),
outputType: 'library',
});
console.log(result);
}
start();