parcel-plugin-inject-style-tag

Inject styles into the DOM using multiple <style> tags

Usage no npm install needed!

<script type="module">
  import parcelPluginInjectStyleTag from 'https://cdn.skypack.dev/parcel-plugin-inject-style-tag';
</script>

README

parcel-plugin-inject-style-tag

Inject styles into the DOM using multiple <style> tags

Table of Contents

Installation

npm install parcel-plugin-inject-style-tag --save-dev

Usage

Install this plugin and configure which CSS assets you want to inline into JS and inject into a <style> tag within your document's <head>.

Configuration

Please place you config either in:

  • a parcelInjectStyle prop within your package.json
  • or inside a one config file of:
    • .parcelinjectstylerc,
    • .parcelinjectstylerc.js
    • or parcelinjectstyle.config.js

This plugin utilise file-path-filter to help you filter injected assets.

  • criteria - The filter criteria. This can be any of the following:
  • A boolean. true will match all files. false will not match any files.
  • A glob pattern. If the pattern starts with !, then it will be treated as an exclude pattern (see below)
  • A regular expression
  • A filter function that accepts a file path and returns true if the file should be matched
  • An array containing any combination of the above types
  • An object with include and exclude properties. Each of these properties can be any of the above types. File paths will be matched if they match any of the include criteria and do not match any of the exclude criteria.

Credit / Inspiration

Inspired by this comment.

License

The MIT License (MIT)

Copyright (c) 2022 Andreas Deuschlinger

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.