Skip to content

A webpack plugin for generating progressive web application manifest.json file.

License

Notifications You must be signed in to change notification settings

madneal/pwa-manifest-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pwa-manifest-generator Build Status

This is utilized to generated manifest.json file for a progressive web application. And this is inspired by pwa-manifest-webpack-plugin.

Install

npm install -g pwa-manifest-generator

Config

const pluginPwa = require('pwa-manifest-generator')

module.exports = {
  entry: path.resolve(__dirname, './main.js'),
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'bundle.js'
  },
  plugins: [
    new pluginPwa({
      name: 'test',
      description: 'test the plugin',
      icon: {
          src: path.resolve('example/icon.jpg'),
          sizes: [144, 192]
      }
    })
  ]
}

This will generate the manifest.json file:

{
  "name": "pwa-manifest-generator",
  "version": "0.1.3",
  "description": "A webpack plugin to generate manifest.json file for a progressive web application.",
  "main": "index.js",
  "directories": {
    "example": "example"
  },
  "scripts": {
    "test": "webpack --config ./example/webpack.config.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/neal1991/pwa-manifest-generator.git"
  },
  "keywords": [
    "pwa",
    "webpack",
    "plugin"
  ],
  "author": "neal1991",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/neal1991/pwa-manifest-generator/issues"
  },
  "homepage": "https://github.com/neal1991/pwa-manifest-generator#readme",
  "dependencies": {
    "mime": "^1.3.6",
    "webpack": "^2.5.1",
    "jimp": "^0.2.27
  }
}

You can access the example folder for an example. In the example folder, there is a webpack.config.js,you can run npm run test to generate the manifest.json file.

LICENSE

MIT

About

A webpack plugin for generating progressive web application manifest.json file.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published