0.1.3 • Published 1 year ago
@ms-cloudpack/bundler-plugin-rspack v0.1.3
@ms-cloudpack/bundler-plugin-rspack
Provides a Cloudpack bundler abstraction around the Rspack 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();