summaryrefslogtreecommitdiff
path: root/test/react-component.test.js (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-04-30Migrate to `yarn` monorepo (#157)Gravatar Nate Moore 1-54/+0
* chore: use monorepo * chore: scaffold astro-scripts * chore: move tests inside packages/astro * chore: refactor tests, add scripts * chore: move parser to own module * chore: move runtime to packages/astro * fix: move parser to own package * test: fix prettier-plugin-astro tests * fix: tests * chore: update package-lock * chore: add changesets * fix: cleanup examples * fix: starter example * chore: update changeset config * chore: update changeset config * chore: setup changeset release workflow * chore: bump lockfiles * chore: prism => astro-prism * fix: tsc --emitDeclarationOnly * chore: final cleanup, switch to yarn * chore: add lerna * chore: update workflows to yarn * chore: update workflows * chore: remove lint workflow * chore: add astro-dev script * chore: add symlinked README
2021-04-14Add Windows Support (#93)Gravatar Drew Powers 1-1/+2
* Add Windows to test suite * Try implicit URL
2021-04-09Use import specifier rather than filename (#71)Gravatar Drew Powers 1-2/+11
2021-03-30[ci] npm run formatGravatar matthewp 1-1/+1
2021-03-30Add support for doctype (#37)Gravatar Matthew Phillips 1-1/+1
* Add support for doctype * Automatically prepend doctype
2021-03-26Absorb Snowpack config inside Astro (#32)Gravatar Drew Powers 1-4/+4
* Absorb Snowpack config inside Astro * Add basic README * Format tests * Update esbuild * Format tests
2021-03-24hmx ☞ astro (#22)Gravatar Matthew Phillips 1-1/+1
This changes all hmx files to astro files and updates all code to not reference hmx any more.
2021-03-23Allow HMX components in markdown (#19)Gravatar Matthew Phillips 1-2/+6
* Allow HMX components in markdown This adds support for HMX components in markdown. The mechanism for importing is via frontmatter. We could do this differently (setup script maybe?) but since this was the easiest to implement I thought it was a good first-pass option. * Remove node-fetch from snowpack config * Assert that the runtime is created successfully * Add back in the micromark extension for encoding entities * Encode both codeTextData and codeFlowValue * Install snowpack app's deps
2021-03-23Add support for React components. (#18)Gravatar Matthew Phillips 1-0/+40
* Add support for React components. This adds support for react components via a new `extensions` config in astro.config.mjs. In the future we can extend this to do things like look at the import statements, as Snowpack does. * Fix the tests