Manifest Pack
Generate a web app manifest.
Overview
Setup
Manifest Pack
is included in the complete
and default
editions.
Current Release
npm install --save-dev @packmule/manifest-pack
Nightly Build
npm install --save-dev @packmule/manifest-pack@nightly
API
ManifestPack(options: ManifestPlugin.ManifestOptions)
Usage
Example
Generate a basic web app manifest using the webpack-pwa-manifest
plugin internally.
import Packmule from '@packmule/core';
import ManifestPack from '@packmule/manifest-pack';
const packmule = new Packmule();
packmule.add(
new ManifestPack({
name: 'Web Application',
short_name: 'App',
}),
);
return packmule.generate();