如何使用Polymer 2 Build Process?

时间:2018-02-16 15:50:58

标签: build polymer-2.x polymer-cli

我知道这可能与this question重复,但从来没有明确的答案。

Polymer 2 Framework到目前为止有一个非常好的文档,但是当涉及到构建过程时,没有足够的解释。

我已经成功创建了自己的元素,并且引用了外部脚本,并且所有内容都可以正常运行

polymer serve --open

但是我花了很多时间来构建它并将输出包含到最小的HTML模板中而没有成功。这真的很棘手吗?

我甚至再次尝试使用空元素模板,没有机会。这个模板有一个几乎空白的聚合物.json:

{
    "lint": {
        "rules": [
            "polymer-2"
        ]
    }
}

如果我马上建立

polymer build 

(应该使用默认构建行为)然后我得到一个带有index.html和bower_components文件夹的默认构建文件夹。没有引用我创建的自定义元素(“Hello ...”)。

我需要做些什么来获得这个“Hello Something”模板的最终版本并将其包含在最小的html页面中?

2 个答案:

答案 0 :(得分:1)

使用单一组件从单个组件到应用程序有很多不同的方法,我不会说100%这是最好的,但它应该有效。 “我需要做些什么来获得这个”Hello Something“模板的最终构建并将其包含在最小的html页面中?”,这是一个非常灵活的请求,所以即使在下面也有很多替代方案,但以下是我的建议。我们将从命令行开始,从桌面或您保存项目的文件夹开始。

mkdir minimal-html-page
cd minimal-html-page
polymer init
// here make sure you choose `polymer-2-application` other questions re of little consequence in this specific use case
bower install {yourComponent} --save
// in that case that you haven't published to github, copy and paste also works. Paste into the `src` directory if that's the case.
atom .
// or whatever editor you prefer

现在你已经进入了你的项目,只需要做一次改变就可以了。

<强>的index.html

更改当前的HTML导入

<link rel="import" href="/src/build-test-app/build-test-app.html">

链接到您的组件。

此时你可以自由地使用polymer build来构建项目,然后它将构建你的代码以通过看起来像

的东西部署在其他应用程序中
<script src="/bower_components/webcomponentsjs/webcomponents-loader.js"></script>

<link rel="import" href="/src/build-test-app/build-test-app.html">
<build-test-app></build-test-app>

这是最基本的构建,不会考虑您在项目中可能具有的任何x浏览器或性能目标。您还会在build/default目录中看到您需要复制/粘贴的所有文件,以便在其他地方使用该组件。

如果您确实有x浏览器期望,可以使用polymer build --compile命令轻松解决这些问题。这将创建稍微复杂的嵌入代码来管理ES5 / 6功能边界的任何一侧,并且看起来像:

<script>!function(e){var r=e.babelHelpers={};r.typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r.classCallCheck=function(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")},r.createClass=function(){function e(e,r){for(var t=0;t<r.length;t++){var n=r[t];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(r,t,n){return t&&e(r.prototype,t),n&&e(r,n),r}}(),r.defineEnumerableProperties=function(e,r){for(var t in r){var n=r[t];n.configurable=n.enumerable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,t,n)}return e},r.defaults=function(e,r){for(var t=Object.getOwnPropertyNames(r),n=0;n<t.length;n++){var o=t[n],i=Object.getOwnPropertyDescriptor(r,o);i&&i.configurable&&void 0===e[o]&&Object.defineProperty(e,o,i)}return e},r.defineProperty=function(e,r,t){return r in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e},r.extends=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},r.get=function e(r,t,n){null===r&&(r=Function.prototype);var o=Object.getOwnPropertyDescriptor(r,t);if(void 0===o){var i=Object.getPrototypeOf(r);return null===i?void 0:e(i,t,n)}if("value"in o)return o.value;var a=o.get;if(void 0!==a)return a.call(n)},r.inherits=function(e,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function, not "+typeof r);e.prototype=Object.create(r&&r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),r&&(Object.setPrototypeOf?Object.setPrototypeOf(e,r):e.__proto__=r)},r.instanceof=function(e,r){return null!=r&&"undefined"!=typeof Symbol&&r[Symbol.hasInstance]?r[Symbol.hasInstance](e):e instanceof r},r.newArrowCheck=function(e,r){if(e!==r)throw new TypeError("Cannot instantiate an arrow function")},r.objectDestructuringEmpty=function(e){if(null==e)throw new TypeError("Cannot destructure undefined")},r.objectWithoutProperties=function(e,r){var t={};for(var n in e)r.indexOf(n)>=0||Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},r.possibleConstructorReturn=function(e,r){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!r||"object"!=typeof r&&"function"!=typeof r?e:r},r.set=function e(r,t,n,o){var i=Object.getOwnPropertyDescriptor(r,t);if(void 0===i){var a=Object.getPrototypeOf(r);null!==a&&e(a,t,n,o)}else if("value"in i&&i.writable)i.value=n;else{var u=i.set;void 0!==u&&u.call(o,n)}return n},r.slicedToArray=function(){function e(e,r){var t=[],n=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(n=(a=u.next()).done)&&(t.push(a.value),!r||t.length!==r);n=!0);}catch(e){o=!0,i=e}finally{try{!n&&u.return&&u.return()}finally{if(o)throw i}}return t}return function(r,t){if(Array.isArray(r))return r;if(Symbol.iterator in Object(r))return e(r,t);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r.taggedTemplateLiteral=function(e,r){return Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(r)}}))},r.temporalRef=function(e,r,t){if(e===t)throw new ReferenceError(r+" is not defined - temporal dead zone");return e},r.temporalUndefined={},r.toArray=function(e){return Array.isArray(e)?e:Array.from(e)},r.toConsumableArray=function(e){if(Array.isArray(e)){for(var r=0,t=Array(e.length);r<e.length;r++)t[r]=e[r];return t}return Array.from(e)}}("undefined"==typeof global?self:global);</script>


<script>if (!window.customElements) { document.write('<!--'); }</script>
    <script type="text/javascript" src="/bower_components/webcomponentsjs/custom-elements-es5-adapter.js"></script>
    <!--! do not remove -->
<script src="/bower_components/webcomponentsjs/webcomponents-loader.js"></script>

<link rel="import" href="/src/build-test-app/build-test-app.html">
<build-test-app></build-test-app>

<!--! do not remove -->部分不是开玩笑,它是确保编译代码在ES6环境中有效的必要条件。

除此之外,您可以采取一整套措施来调整生产部署。我会研究https://www.polymer-project.org/2.0/docs/tools/polymer-cli-commands#buildhttps://www.polymer-project.org/2.0/docs/tools/polymer-json以便更好地处理它。

答案 1 :(得分:0)

重新polymer build此命令仅适用于应用项目。”(https://www.polymer-project.org/2.0/docs/tools/polymer-cli-commands#build

此外,还需要shell。请参阅https://www.polymer-project.org/2.0/docs/tools/polymer-json#shell