The loader allows you to write mixed HTML, CSS and JavaScript Polymer elements and still use the full webpack ecosystem including module bundling and code splitting.
The loader transforms your components:
<link rel="import" href="./my-other-element.html">
->import './my-other-element.html';
<dom-module>
becomes a string which is registered at runtime<script src="./other-script.js"></script>
->import './other-script.js';
<script>/* contents */</script>
->/* contents */
What does that mean?
Any <link>
"href" or <script>
"src" that is not an external link and does not start with ~
, /
, ./
or a series of ../
will have ./
appended to the beginning of the value. To prevent this change use options ignoreLinks below.
tag |
import |
---|---|
<link rel="import" href="path/to/some-element.html"> |
import "./path/to/some-element.html" |
<link rel="import" href="/path/to/some-element.html"> |
import "/path/to/some-element.html" |
<link rel="import" href="../path/to/some-element.html"> |
import "../path/to/some-element.html" |
<link rel="import" href="./path/to/some-element.html"> |
import "./path/to/some-element.html" |
<link rel="import" href="~path/to/some-element.html"> |
import "~path/to/some-element.html" |
{
test: /\.html$/,
include: Array (optional),
exclude: RegExp (optional),
options: {
ignoreLinks: Array (optional),
ignoreLinksFromPartialMatches: Array (optional),
ignorePathReWrite: Array (optional)
},
loader: 'polymer-webpack-loader'
},
Directories that contain your web components. This will allow you to control where the loader can access files to process. WARNING: If this property exists the loader will only process files that have their parent directory listed. So if you have <link>
in your components to other directories they MUST be included in this Array.
A regular expression for files that the loader should exclude. NOTE: Files imported through a <link>
will not be excluded by this property. See Options.ignoreLinks.
An array of paths to be ignored when dynamically imported. When the component loader comes across a <link>
in your components it dynamically imports the value of href attribute.
An array of paths to be ignored when dynamically imported based on match of string anywhere within the path. When the component loader comes across a <link>
in your components it dynamically imports the value of href attribute.
Paths the loader will respect as is. In order to properly import certain paths, checks are made to ensure the path is picked up correctly by Webpack. Paths matching a value in the Array will be imported as is, you may have aliases or just want the loader to respect the path.
If you'd like to transpile the contents of your element's <script>
block you can chain an additional loader.
module: {
loaders: [
{
test: /\.html$/,
use: [
// Chained loaders are applied last to first
{ loader: 'babel-loader' },
{ loader: 'polymer-webpack-loader' }
]
}
]
}
// alternative syntax
module: {
loaders: [
{
test: /\.html$/,
// Chained loaders are applied right to left
loader: 'babel-loader!polymer-webpack-loader'
}
]
}
Depending on how you configure the HtmlWebpackPlugin you may encounter conflicts with the polymer-webpack-loader.
Example:
{
test: /\.html$/,
loader: 'html-loader',
include: [
path.resolve(__dirname, './index.html'),
],
},
{
test: /\.html$/,
loader: 'polymer-webpack-loader'
}
This would expose your index.html file to the polymer-webpack-loader based on the process used by the html-loader. In this case you would need to exclude your html file from the polymer-webpack-loader or look for other ways to avoid this conflict. See: html-webpack-plugin template options
Bryan Coulter |
Chad Killingsworth |
Rob Dodson |