@ms-cloudpack/bundler-webpack
v0.2.7
Published
A cloudpack plugin for abstracting webpack.
Downloads
1,430
Keywords
Readme
@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();