summaryrefslogtreecommitdiff
path: root/src/compiler/parse/read/expression.ts (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-03-25add component state, top-level await support (#26)Gravatar Fred K. Schott 1-42/+0
2021-03-22cleanup new parser handlingGravatar Fred K. Schott 1-6/+5
2021-03-22add typescript support for expressionsGravatar Fred K. Schott 1-1/+0
2021-03-19Initial tests set up (#10)Gravatar Matthew Phillips 1-32/+35
* Begin debugging * Initial tests set up This adds tests using uvu (we can switch if people want) and restructures things a bit so that it's easier to test. Like in snowpack you set up a little project. In our tests you can say: ```js const result = await runtime.load('/blog/hello-world') ``` And analyze the result. I included a `test-helpers.js` which has a function that will turn HTML into a cheerio instance, for inspecting the result HTML. * Add CI * Remove extra console logs * Formatting
2021-03-16Bring compiler into Astro (#4)Gravatar Matthew Phillips 1-0/+41
* include source compiler * Import from JS * Conditionally use the instance contents Co-authored-by: Fred K. Schott <fkschott@gmail.com>