Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mugi-uno/parcel-plugin-bundle-manifest
Parcel plugin for generating an bundle manifest.
https://github.com/mugi-uno/parcel-plugin-bundle-manifest
Last synced: 2 months ago
JSON representation
Parcel plugin for generating an bundle manifest.
- Host: GitHub
- URL: https://github.com/mugi-uno/parcel-plugin-bundle-manifest
- Owner: mugi-uno
- Created: 2017-12-12T14:17:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-17T11:56:14.000Z (over 5 years ago)
- Last Synced: 2024-11-11T19:21:45.004Z (3 months ago)
- Language: JavaScript
- Size: 78.1 KB
- Stars: 46
- Watchers: 2
- Forks: 21
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-parcel - Bundle Manifest - Plugin for generating a bundle manifest. (Plugins / Other)
README
Parcel plugin for generating an bundle manifest.
![](https://travis-ci.org/mugi-uno/parcel-plugin-bundle-manifest.svg?branch=master)
Usage
========## install
```
npm install --save-dev parcel-plugin-bundle-manifest
```## build
```
parcel build entry.js
```## Output
Output a `parcel-manifest.json` file to the same directory as the bundle file.
- dist/entry.html
- dist/{hash}.js
- dist/{hash}.css
- dist/parcel-manifest.jsonThe Manifest will look like this :
```json
{
"index.html": "/dist/index.html",
"index.js": "/dist/5f0796534fe2892712053b3a035f585b.js",
"main.scss": "/dist/5f0796534fe2892712053b3a035f585b.css"
}
```License
========MIT