summaryrefslogtreecommitdiff
path: root/packages (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-09-14Version Packages (#1358)astro@0.20.6@astrojs/renderer-vue@0.1.8@astrojs/renderer-svelte@0.1.2@astrojs/renderer-solid@0.1.1@astrojs/renderer-react@0.2.1@astrojs/renderer-preact@0.2.2@astrojs/renderer-lit@0.1.1Gravatar github-actions[bot] 14-11/+61
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-09-14Fix passing Markdown content through props (#1259) (#1343)Gravatar kelvinsjk 3-0/+17
Co-authored-by: Kelvin Soh <kelvinsoh@pop-os.localdomain> Co-authored-by: Fred K. Schott <fkschott@gmail.com>
2021-09-14Improve stats logging to use `pretty-bytes` so that 20B doesn't get output ↵Gravatar Caleb Jasik 2-2/+3
as 0kB, which is accurate, but confusing (#1329)
2021-09-14[ci] yarn formatGravatar FredKSchott 1-1/+1
2021-09-14Merge "Remove check for referenced files" (#1196)Gravatar (none) 5-6/+40
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
2021-09-14Docs: Add READMEs for renderers (#1351)Gravatar Drew Powers 7-1/+174
* Add README stub for renderers * Add renderer READMEs
2021-09-13[ci] yarn formatGravatar FredKSchott 2-8/+7
2021-09-10Prevent removing CSS preloads during bundling (#1326)Gravatar Bartek Igielski 7-18/+91
* Prevent removing nodes, becasue styles preloading was detected earlier * Add separate deduping for preloads and cover it with tests. * Create quiet-horses-turn.md * Test merging preload tags
2021-09-09Version Packages (#1344)Gravatar github-actions[bot] 4-3/+23
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-09-09Revert "Version Packages (#1303)"Gravatar Fred K. Schott 4-23/+3
This reverts commit 1a88cfde7d2b3854e279c1bf3e12adf5d2155801.
2021-09-09Version Packages (#1303)Gravatar github-actions[bot] 4-3/+23
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-09-07[ci] yarn formatGravatar jasikpark 1-3/+3
2021-09-07Fix parsing of an empty literal `<pre></pre>` in markdown source (#1332)Gravatar Caleb Jasik 3-0/+32
2021-09-06[ci] yarn formatGravatar FredKSchott 1-14/+14
2021-09-06scale back the examples pageGravatar Fred K. Schott 1-0/+0
2021-09-06Adds examples pageGravatar aFuzzyBear 1-14/+14
2021-09-03[ci] yarn formatGravatar FredKSchott 1-9/+14
2021-09-03Add new <Code> component, to succeed <Prism> (#1208)Gravatar Fred K. Schott 12-0/+198
* add code component * Update packages/astro/components/Debug.astro Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz> * Update packages/astro/components/Debug.astro Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz> * fix format in debug component * remove Debug changes * add wrap support * add props docs * update default theme Co-authored-by: Peter Singh <drgaud@hotmail.com> Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz>
2021-09-03[ci] yarn formatGravatar tony-sull 1-9/+15
2021-09-03Format config errors for humans (#1298)Gravatar Fred K. Schott 5-12/+76
* format config errors * fix bad root
2021-09-03fix astro esm-cjs entrypoint (#1300)Gravatar Fred K. Schott 1-1/+11
2021-09-03Import unified types as unified since there is no default export for ↵Gravatar Caleb Jasik 2-2/+2
'unified'. (#1296)
2021-09-01skip 404.html pages in sitemap generation (#1287)Gravatar Mani Gandham 2-2/+12
* skip 404.html pages in sitemap generation * update path check for 404
2021-09-01Version Packages (#1271)create-astro@0.6.2astro@0.20.4Gravatar github-actions[bot] 4-2/+14
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-09-01Add interfaces for built-in components (#1292)Gravatar Matthew Phillips 2-2/+18
* Add interfaces for built-in components * Adds a changeset
2021-08-30create-astro: Format console logs and fix message about default renderers ↵Gravatar Mikkel Tønder 1-7/+7
(#1257) * create-astro: Format console logs and fix message about default renderers Format the console log statements so the code is easier to read Add a check to see if the renderers array is empty and only show the message about using the templates default renderers if it isn't * Add changeset
2021-08-27fix bad README removalGravatar Fred K. Schott 1-1/+23
2021-08-27Version Packages (#1252)astro@0.20.3Gravatar github-actions[bot] 2-1/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-08-27Fix knownEntrypoint warning for Fix __astro_hoisted_scripts.js (#1251)Gravatar Matthew Phillips 1-0/+1
* Add new internal module to the knownEntrypoints * Adds a changeset
2021-08-27Version Packages (#1246)create-astro@0.6.1astro@0.20.2@astrojs/parser@0.20.2Gravatar github-actions[bot] 6-4/+33
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-08-27[ci] yarn formatGravatar matthewp 1-1/+4
2021-08-27Remove unused namespace redirection from the astro parser (#1245)Gravatar Jonathan Neal 6-84/+27
* nit: remove unused namespace checking from astro parser * test: add tests for namespaced attributes, including one removed attribute * add changeset
2021-08-27[ci] yarn formatGravatar matthewp 8-68/+64
2021-08-27Implementation of hoisted scripts (#1178)Gravatar Matthew Phillips 18-12/+483
* Implementation of hoisted scripts * Use the facade id * Adds docs on hoisted scripts * Don't try to run rollup if there are no hoisted scripts * Handle scripts possibly being undefined (client:only) * Get rid of changes to the portfolio example * Adds a changeset * Remove a todo * Fix lint errors * Rename TransformResult property to hoistedScripts * Move Hoisted Scripts docs to astro-components page * Fixes lint errors * Fix path join for windows
2021-08-26Merge branch 'okikio/main' (#1111)Gravatar Fred K. Schott 1-23/+1
2021-08-26Version Packages (#1239)astro@0.20.1Gravatar github-actions[bot] 2-1/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-08-26WIP update examples/docs/Gravatar Okiki 1-23/+1
2021-08-26add "astro preview" command (#1226)Gravatar Fred K. Schott 5-4/+120
* add "astro preview" command * Update green-buttons-reflect.md * Update cli-reference.md
2021-08-26Version Packages (#1228)astro@0.20.0@astrojs/markdown-support@0.3.0Gravatar github-actions[bot] 4-3/+24
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-08-25updated comment 'threw' to 'through' (#1235)Gravatar Mark Howard 1-1/+1
2021-08-25stop building, bundling, and transforming public/ files (#1210)Gravatar Fred K. Schott 11-7/+51
* stop bundling public/ files * update www and examples
2021-08-25Upgrade unified deps and improve unified plugins types (#1200)Gravatar Robin Métral 8-71/+77
* Upgrade @astrojs/markdown-support deps and update types * Add changeset * Update changeset * Switch astro-markdown-plugins example to use rehype-autolink-headings Usage of remark-autolink-headings is discouraged in favor of the rehype counterpart: https://github.com/remarkjs/remark-autolink-headings\#remark-autolink-headings * Add stricter types for unified plugins This includes a few suggestions from a code review: - use vfile.toString instead of vfile.value.toString - refactor plugins to follow unified best practices instead of returning functions that return a plugin - use any instead of any[] for plugin options types * Narrow down types to more specific hast or mdast typings
2021-08-24Version Packages (#1217)astro@0.19.4Gravatar github-actions[bot] 2-1/+8
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-08-24[ci] yarn formatGravatar matthewp 1-1/+3
2021-08-24Fix linter errors and warnings (#1218)Gravatar Mihkel Eidast 10-23/+27
* fix lint issues, enable lint in ci * add changeset
2021-08-24Fix resolution of Astro.resolve in nested components (#1213)Gravatar Matthew Phillips 4-5/+9
* Fix resolution of Astro.resolve in nested components Components were previously tested, however nested folders were not. * Adds a changeset
2021-08-23Version Packages (#1206)astro@0.19.3Gravatar github-actions[bot] 2-1/+18
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-08-23[ci] yarn formatGravatar FredKSchott 4-7/+4
2021-08-23Add zod schema validation (#1198)Gravatar Fred K. Schott 13-150/+168
* add zod schema validation * update pageUrlFormat config name * add trailing slash support to config
2021-08-23Add Astro `<Debug/>` component (#675)Gravatar Caleb Jasik 2-0/+307
* Initial MVP Debug component * Document the prettifying of the input * Just make `<Debug/>` a wrapper around `<Prism/>` lol * feat: add details/summary debug component * chore: remove Props (unused) * fix: prefer `div` to semantic elements * chore: format * fix: prop-drill `class` into components * fix: ensure `astro/components` are evaluated lazily * feat(debug): export debug component from `astro/debug` * fix: minimal example local snowpack config * docs: add debugging docs * chore: add changeset * docs: update debug docs Co-authored-by: Nate Moore <nate@skypack.dev>