Skip to content

Latest commit

 

History

History

pack-manifest

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Manifest Pack npm-latest

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();

License

MIT