<万博manbetx平台> polymer-webpack-loader - webpack 中文文档(v4.15.1) - 万博manbetx平台中文网
购物车
登陆 / 注册
微信扫码登陆

推荐手册

polymer-webpack-loader

component loader for .

The loader allows you to write mixed 万博manbetx平台, 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.万博manbetx平台"> -> import './my-other-element.万博manbetx平台';
  • <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.

Path Translations

tagimport
<link rel="import" href="path/to/some-element.万博manbetx平台">import "./path/to/some-element.万博manbetx平台"
<link rel="import" href="/path/to/some-element.万博manbetx平台">import "/path/to/some-element.万博manbetx平台"
<link rel="import" href="../path/to/some-element.万博manbetx平台">import "../path/to/some-element.万博manbetx平台"
<link rel="import" href="./path/to/some-element.万博manbetx平台">import "./path/to/some-element.万博manbetx平台"
<link rel="import" href="~path/to/some-element.万博manbetx平台">import "~path/to/some-element.万博manbetx平台"

Configuring the Loader

{
  test: /\.万博manbetx平台$/,
  include: Condition(s) (optional),
  exclude: Condition(s) (optional),
  options: {
    ignoreLinks: Condition(s) (optional),
    ignorePathReWrite: Condition(s) (optional),
    processStyleLinks: Boolean (optional),
    万博manbetx平台Loader: Object (optional)
  },
  loader: 'polymer-webpack-loader'},

include: Condition(s)

See and Condition in the webpack documentation. Paths matching this option will be processed by polymer-webpack-loader.  WARNING: If this property exists the loader will only process files matching the given conditions. If your component has a <link> pointing to a component e.g. in another directory, the include condition(s) MUST also match that directory.

exclude: Condition(s)

See and in the webpack documentation. Paths matching this option will be excluded from processing by polymer-webpack-loader. NOTE: Files imported through a <link> will not be excluded by this property. See Options.ignoreLinks.

Options

<link>s pointing to paths matching these conditions (see Condition in the webpack documentation) will not be transformed into imports.

ignorePathReWrite: Condition(s)

<link> paths matching these conditions (see Condition in the webpack documentation) will not be changed when transformed into imports. This can be useful for respecting aliases, loader syntax (e.g.markup-inline-loader!./my-element.万博manbetx平台), or module paths.

If set to true the loader will rewrite <link import="css" href="..."> or <link rel="stylesheet" href="..."> that are inside the dom-module with <style>require('...')</style>. This will allow for the file to be processed by loaders that are set up in the webpack config to handle their file type.

1、Any <link> that is inside the <dom-module> but not in the <template> will be added to the <template> in the order the tags appear in the file.
  <dom-module>
    <link rel="stylesheet" href="file1.css">
    <template>
      <link rel="stylesheet" href="file2.css">
    </template>
  </dom-module>
  would produce
  <dom-module>
    <template>
      <style>require('file1.css')</style>
      <style>require('file2.css')</style>
    </template>
  </dom-module>
2、The loader will only replace a <link> if the href is a relative path. Any link attempting to access an external link i.e. http, https or // will not be replaced.

万博manbetx平台Loader: Object

Options to pass to the 万博manbetx平台-loader. See 万博manbetx平台-loader.

Use with Babel (or other JS transpilers)

If you'd like to transpile the contents of your element's <script> block you can .

module: {
  loaders: [
    {
      test: /\.万博manbetx平台$/,
      use: [
        // Chained loaders are applied last to first
        { loader: 'babel-loader' },
        { loader: 'polymer-webpack-loader' }
      ]
    }
  ]
}

// alternative syntax

module: {
  loaders: [
    {
      test: /\.万博manbetx平台$/,
      // Chained loaders are applied right to left
      loader: 'babel-loader!polymer-webpack-loader'
    }
  ]
}

Use of 万博manbetx平台WebpackPlugin

Depending on how you configure the 万博manbetx平台WebpackPlugin you may encounter conflicts with the polymer-webpack-loader.

Example:

{
  test: /\.万博manbetx平台$/,
  loader: '万博manbetx平台-loader',
  include: [
    path.resolve(__dirname, './index.万博manbetx平台'),
  ],
},
{
  test: /\.万博manbetx平台$/,
  loader: 'polymer-webpack-loader'}

This would expose your index.万博manbetx平台 file to the polymer-webpack-loader based on the process used by the 万博manbetx平台-loader. In this case you would need to exclude your 万博manbetx平台 file from the polymer-webpack-loader or look for other ways to avoid this conflict. See:

Shimming

Not all Polymer Elements have been written to execute as a module and will require changes to work with webpack. The most common issue encountered is because modules do not execute in the global scope. Variables, functions and classes will no longer be global unless they are declared as properties on the global object (window).

class MyElement {} // I'm not global anymore
window.myElement = MyElement; // Now I'm global again

For external library code, webpack provides shimming options.

  • Use the exports-loader to add a module export to components which expect a symbol to be global.
  • Use the imports-loader when a script expects the this keyword to reference window.
  • Use the ProvidePlugin to add a module import statement when a script expects a variable to be globally defined (but is now a module export).
  • Use the NormalModuleReplacementPluginto have webpack swap a module-compliant version for a script.

You may need to apply multiple shimming techniques to the same component.

Boostrapping Your Application

The webcomponent polyfills must be added in a specific order. If you do not delay loading the main bundle with your components, you will see the following exceptions in the browser console:

Uncaught TypeError: Failed to construct '万博manbetx平台Element': Please use the 'new' operator, this DOM object constructor cannot be called as a function.

Reference the for the proper loading sequence.

网站导航
标签地图
学习路径
视频教程
开发软件
旗下子站
技术文章
文档工具
关于我们
企业合作
人才招聘
联系我们
讲师招募
QQ交流群
QQ官方交流群
微信公众号
微信公众号