├── .gitignore ├── .npmignore ├── .prettierrc ├── .yarn └── releases │ └── yarn-3.1.1.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── logo.gif ├── babel.config.js ├── index.mjs ├── package.json ├── src ├── __tests__ │ ├── assets │ │ └── manifest │ │ │ ├── definitely_not_a_manifest_icon.png │ │ │ ├── icon_192.png │ │ │ ├── icon_512.png │ │ │ └── this_is_a_manifest_icon.png │ └── plugin.tests.js └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/.yarn/releases/yarn-3.1.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/assets/logo.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/index.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/assets/manifest/definitely_not_a_manifest_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/src/__tests__/assets/manifest/definitely_not_a_manifest_icon.png -------------------------------------------------------------------------------- /src/__tests__/assets/manifest/icon_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/src/__tests__/assets/manifest/icon_192.png -------------------------------------------------------------------------------- /src/__tests__/assets/manifest/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/src/__tests__/assets/manifest/icon_512.png -------------------------------------------------------------------------------- /src/__tests__/assets/manifest/this_is_a_manifest_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/src/__tests__/assets/manifest/this_is_a_manifest_icon.png -------------------------------------------------------------------------------- /src/__tests__/plugin.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/src/__tests__/plugin.tests.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumblr/webpack-web-app-manifest-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------