From 3ad0ea188a279c020f31ab02ab7a561b12052e3f Mon Sep 17 00:00:00 2001 From: Peter Burns Date: Tue, 26 Feb 2019 18:12:18 -0800 Subject: [PATCH] Add file extensions fo imports where missing. I was experimenting with [import maps](https://github.com/WICG/import-maps) in Chrome Canary. It won't be really useful for us until https://crbug.com/928149 (and, practically speaking) https://crbug.com/928149 are implemented, but it's at a really promising state! This change ensures that when we're importing a file within another package, we give the full filename. --- src/lit-element.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lit-element.ts b/src/lit-element.ts index e2bbada9..3d4b9803 100644 --- a/src/lit-element.ts +++ b/src/lit-element.ts @@ -12,13 +12,13 @@ * http://polymer.github.io/PATENTS.txt */ import {TemplateResult} from 'lit-html'; -import {render} from 'lit-html/lib/shady-render'; +import {render} from 'lit-html/lib/shady-render.js'; import {PropertyValues, UpdatingElement} from './lib/updating-element.js'; export * from './lib/updating-element.js'; export * from './lib/decorators.js'; -export {html, svg, TemplateResult, SVGTemplateResult} from 'lit-html/lit-html'; +export {html, svg, TemplateResult, SVGTemplateResult} from 'lit-html/lit-html.js'; import {supportsAdoptingStyleSheets, CSSResult} from './lib/css-tag.js'; export * from './lib/css-tag.js';