Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7d079d9
Initial commit for the lit-labs/compiler
AndrewJakubowicz Jun 27, 2023
05035b6
Compile html templates that are in the value position of another temp…
AndrewJakubowicz Jun 27, 2023
f124273
Fix naming collisions that were silencing failing tests
AndrewJakubowicz Jun 27, 2023
53fc515
Fix raw text element handling & skip some debug test.
AndrewJakubowicz Jun 28, 2023
65a6706
Add empty changeset and make the compiler package private
AndrewJakubowicz Jun 28, 2023
e031554
Add simple lit-element compiler test
AndrewJakubowicz Jun 28, 2023
15d464a
Fix wireit for lit-labs/compiler
AndrewJakubowicz Jun 28, 2023
5c88221
Fix relative imports that break production tests
AndrewJakubowicz Jun 29, 2023
08d6a72
Add kitchen sink compiled benchmark and fix comment node markers.
AndrewJakubowicz Jun 29, 2023
169546b
Add template-heavy-compiled benchmark
AndrewJakubowicz Jun 29, 2023
8d6358b
Add repeat-compiled benchmark
AndrewJakubowicz Jun 29, 2023
c98cb43
brand the compiled result and now all tests pass.
AndrewJakubowicz Jul 11, 2023
68e142c
refactor out tests into golden files for easier iteration
AndrewJakubowicz Jul 17, 2023
e5ad18a
refactor to use a class – break out functionality
AndrewJakubowicz Jul 25, 2023
6c0ca2f
add prettierignore
AndrewJakubowicz Jul 25, 2023
8894649
Fix the security brand so it is declared once
AndrewJakubowicz Jul 25, 2023
87ba389
Refactor out the remaining ast fragments and document.
AndrewJakubowicz Jul 25, 2023
e78e2a4
Do not emit brand if unused & add kitchen sink parts test
AndrewJakubowicz Jul 25, 2023
5350a06
Add source-map test
AndrewJakubowicz Jul 25, 2023
220bfe5
fix handling of license comments
AndrewJakubowicz Jul 26, 2023
84b68eb
add JS basic golden test
AndrewJakubowicz Jul 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/many-candles-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ packages/lit-element/lit.min.*
packages/lit-element/polyfill-support.*
packages/lit-element/private-ssr-support.*

packages/lit-html/compiled/
packages/lit-html/development/
packages/lit-html/node/
packages/lit-html/version-stability-build/
Expand Down Expand Up @@ -164,6 +165,12 @@ packages/labs/cli/test-gen/
packages/labs/cli-localize/lib/
packages/labs/cli-localize/node_modules/

packages/labs/compiler/**/test_files
packages/labs/compiler/development/
packages/labs/compiler/node_modules/
packages/labs/compiler/test/
packages/labs/compiler/lib/
packages/labs/compiler/test_files/source_map_test/*.compiled.js
packages/labs/context/development/
packages/labs/context/test/
packages/labs/context/node_modules/
Expand Down
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ packages/lit-element/lit.min.*
packages/lit-element/polyfill-support.*
packages/lit-element/private-ssr-support.*

packages/lit-html/compiled/
packages/lit-html/development/
packages/lit-html/node/
packages/lit-html/version-stability-build/
Expand Down Expand Up @@ -151,6 +152,12 @@ packages/labs/cli/test-goldens/
packages/labs/cli-localize/lib/
packages/labs/cli-localize/node_modules/

packages/labs/compiler/development/
packages/labs/compiler/node_modules/
packages/labs/compiler/test/
packages/labs/compiler/lib/
packages/labs/compiler/test_files/source_map_test/*.compiled.js
packages/labs/compiler/**/test_files
packages/labs/context/development/
packages/labs/context/test/
packages/labs/context/node_modules/
Expand Down
Loading