You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With esbuild 0.23.1 and 0.24.0, when the esbuild-plugin-minify-html-literals is enabled, if a component is not explicitly imported by name then the sourcemap output is absent the filename.
With the index.ts basically re-exporting components,
export * from './components/boris-plaintext-input.js';
export * from './components/boris-poster.js';
export * from './components/boris-progress.js';
export * from './components/boris-publish-dialog.js';
With components looking similar to:
import { LitElement, css, html } from 'lit';
import { customElement, property, query } from 'lit/decorators.js';
@customElement('boris-plaintext-input')
export class BorisPlaintextInputElement extends LitElement {
}
The text was updated successfully, but these errors were encountered:
With
esbuild
0.23.1 and 0.24.0, when theesbuild-plugin-minify-html-literals
is enabled, if a component is not explicitly imported by name then the sourcemap output is absent the filename.Example:
With the following
esbuild
script:With the
index.ts
basically re-exporting components,With components looking similar to:
The text was updated successfully, but these errors were encountered: