0.2.0 • Published 8 months ago

@ms-cloudpack/bundler-webpack v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

@ms-cloudpack/bundler-webpack

Provides a Cloudpack bundler abstraction around the Webpack 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();