Webpack : Lit Element new usage
See original GitHub issueHi everyone, what’s up?
As Polymer 3 came out, I try to use it along with Webpack in order to ease my frontend logic, the problem is, if I try to “compile” the Polymer Lit Element with Webpack, I receive this error :
Here’s my element class :
import { LitElement, html } from '@polymer/lit-element';
class HomeComponent extends LitElement {
static get properties() {
return {
foo: String,
}
}
_render(props) {
return html`
<div>Hello From Polymer !</div>
`;
}
}
customElements.define('my-element', HomeComponent);
And here’s my Webpack configuration :
const Encore = require('@symfony/webpack-encore');
Encore
.setOutputPath('public/build/')
.setPublicPath('/build')
.cleanupOutputBeforeBuild()
.enableSourceMaps(!Encore.isProduction())
// uncomment to create hashed filenames (e.g. app.abc123.css)
// .enableVersioning(Encore.isProduction())
.enableTypeScriptLoader()
.enableVueLoader()
.enableSassLoader()
.addLoader(
{
test: /\.scss$/,
use: [
{
loader: 'sass-loader',
options: {
importer: function(url, prev) {
if(url.indexOf('@material') === 0) {
const filePath = url.split('@material')[1];
const nodeModulePath = `./node_modules/@material/${filePath}`;
return {
file: require('path').resolve(nodeModulePath)
};
}
return {
file: url
};
}
}
}
]
}
)
.addLoader(
{
test: /\.js$/,
loader: 'babel-loader',
query: {
presets: ['es2015']
}
}
)
// Style
.addStyleEntry('core', './assets/scss/public/core.scss')
.addStyleEntry('registration', './assets/scss/public/registration.scss')
// Javascript
.addEntry('form', './assets/javascript/components/form.js')
.addEntry('snackbar', './assets/javascript/components/form/snackbar.js')
// PWA
.addEntry('serviceWorker', './assets/javascript/pwa/app.js')
.addEntry('sw', './assets/javascript/pwa/sw.js')
// Vue
.addEntry('vue', './assets/vue/public/index.js')
// Polymer
.addEntry('home', './assets/javascript/polymer/home.js')
;
module.exports = Encore.getWebpackConfig();
Information: Encore is a PHP/Symfony library, that’s just a wrapper around Webpack so the call stay easily the same.
Does anyone have more information about the Webpack usage with lit-Element ?
Thanks for the help 😃
Issue Analytics
- State:
- Created 5 years ago
- Comments:17 (9 by maintainers)
Top Results From Across the Web
Build for production - Lit.dev
When building an app that includes LitElement components, you can use common JavaScript build tools like Rollup or webpack. We recommend Rollup because...
Read more >Webpack : Lit Element new usage · Issue #72 - GitHub
Hi, i use webpack to build a "lit-element project" that way (no babel), it copy/bundle app files in the build directory ...
Read more >Lit-element and webpack - Stack Overflow
The loaders only affect the behavior of JS imports, i.e. html-loader will come into play only when the bundler finds an .html import:...
Read more >Setting Up Lit Element Project! - Code Entity Blog
Lit Element is a simple library for creating fast, lightweight web components that work in any web page with any framework.
Read more >Webcomponents based UI with Typescript, LitElement and ...
Webcomponents based UI with Typescript, LitElement and Webpack ... To scaffold your app with just single command use my npm (https://www.npmjs.com ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The webcomponents spec mandate that components are created as classes and the new operator is called. If you are transpiling to es5, the components are no longer classes and thus the browsers that implement native web components will complain.
The webcomponentsjs project contains an adapter to handle this: https://github.com/webcomponents/webcomponentsjs/blob/master/custom-elements-es5-adapter.js the polymer build tools add this adapter automatically, with webpack you’d need to add it yourself next to where you’re loading the polyfill. You just need to make sure you only add this adapter if you’re transpiling to es5.
@eskan Ok, just tried your configuration (using es2015) and my components is correctly instantiated and the DOM display the shadow-root element, really impressive trick, many thanks 😃.
@LarsDenBakker Maybe it could be a great idea to update the documentation and add a Webpack example ?