-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init commit with website components working use lit 2 * update import node modules spec per new lit packaging * disable SPA mode spec * all specs passing with new lit * update cli devDep * everything working and rebased * restore eve components * add trusted types scaffolding for lit-html * upgrade to latest version of lit-redux-router with lit 2 compat * update specs * update develop specs for lit@2 * upgrade lit rc4 * handling puppeteer serialization issues with lit 2 and Shady DOM (#719) * WIP * revert www changes * apply lit polyfill support * conditially check for lit before using polyfill * upgrade to final stable version * rebased from master but broken??? * bump deps and set lit resolututions * ship lit polyfill for lit and plugin polyfills users
- Loading branch information
1 parent
4879ae5
commit 953286b
Showing
52 changed files
with
1,051 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/cli/test/cases/build.config.mode-spa/src/components/footer.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/cli/test/cases/build.config.mode-spa/src/routes/about.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { html, LitElement } from 'lit-element'; | ||
import { html, LitElement } from 'lit'; | ||
|
||
class AppAbout extends LitElement { | ||
render() { | ||
return html`<h1>About</h1>`; | ||
} | ||
} | ||
|
||
customElements.define('app-about', AppAbout); | ||
customElements.define('app-route-about', AppAbout); |
4 changes: 2 additions & 2 deletions
4
packages/cli/test/cases/build.config.mode-spa/src/routes/home.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { html, LitElement } from 'lit-element'; | ||
import { html, LitElement } from 'lit'; | ||
|
||
class AppHome extends LitElement { | ||
render() { | ||
return html`<h1>Home</h1>`; | ||
} | ||
} | ||
|
||
customElements.define('app-home', AppHome); | ||
customElements.define('app-route-home', AppHome); |
Oops, something went wrong.