Inject styles into the DOM using multiple <style>
tags
Table of Contents
npm install parcel-plugin-inject-style-tag --save-dev
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>
.
Please place you config either in:
- a
parcelInjectStyle
prop within yourpackage.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 anexclude
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
andexclude
properties. Each of these properties can be any of the above types. File paths will be matched if they match any of theinclude
criteria and do not match any of theexclude
criteria.
Inspired by this comment.
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.