summaryrefslogtreecommitdiff
path: root/test/astro-basic.test.js (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-04-30Migrate to `yarn` monorepo (#157)Gravatar Nate Moore 1-19/+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-13Add Astro.fetchContent API (#91)Gravatar Drew Powers 1-1/+1
2021-04-05[ci] npm run formatGravatar matthewp 1-1/+1
2021-04-05Improve searching for pages (#60)Gravatar Matthew Phillips 1-21/+5
This improves the algorithm for searching for pages. It now works like: 1. If pathname ends with / 1. Look for PATHNAME/index.astro 1. Look for PATHNAME/index.md 1. else 1. Look for PATHNAME.astro 1. Look for PATHNAME.md 1. Look for PATHNAME/index.astro 1. 301 1. Look for PATHNAME/index.md 1. 301 1. 404
2021-03-30[ci] npm run formatGravatar matthewp 1-1/+1
2021-03-30Add support for doctype (#37)Gravatar Matthew Phillips 1-6/+3
* Add support for doctype * Automatically prepend doctype
2021-03-26Absorb Snowpack config inside Astro (#32)Gravatar Drew Powers 1-5/+5
* Absorb Snowpack config inside Astro * Add basic README * Format tests * Update esbuild * Format tests
2021-03-24hmx ☞ astro (#22)Gravatar Matthew Phillips 1-0/+38
This changes all hmx files to astro files and updates all code to not reference hmx any more.