parcel-plugin-modernizr v1.1.4
parcel-plugin-modernizr 
A Parcel plugin for generating custom Modernizr builds ⚙️
Please note: Since v1.1.0, the functionality of this plugin changed. See setup instructions on how to use it now.
Installation
Using NPM
$ npm install parcel-plugin-modernizr -DUsing Yarn
$ yarn add parcel-plugin-modernizr -DSetup
In your project's source folder, create a file modernizr.mdrnzr and put in your Modernizr config, for example:
{
  "minify": true,
  "classPrefix" : "",
  "options": [
    "setClasses",
    "addTest"
  ],
  "feature-detects": [
    "css/pointerevents", 
    "touchevents", 
    "history"
  ]
}You can also create a file named .modernizrrc in your project's root folder and put your config there.
Instead of using a .modernizrrc, you can also put your config inside your project's package.json under the key "modernizr".
Config hierarchy:
- .modernizrrc
- package.json under key "modernizr"
- directly inside "modernizr.mdrnzr"
See https://github.com/Modernizr/Modernizr/blob/master/lib/config-all.json for all available options.
Usage option 1: Embedded in html
./src/index.html:
<script src="modernizr.mdrnzr"></script>./src/modernizr.mdrnzr: Your modernizr config (or empty if using one of the other options)
$ parcel ./src/index.htmlOutput
- ./dist/index.html: - <script src="modernizr.contentHash.js"></script>
- ./dist/modernizr.contentHash.js: Your custom modernizr build 
Usage option 2: Direct
./src/modernizr.mdrnzr: Your modernizr config (or empty if using one of the other options)
$ parcel ./src/modernizr.mdrnzrOutput
./dist/modernizr.js: Your custom modernizr build
Contributing
Pull requests are welcome