#!/usr/bin/env node 'use strict'; const currentVersion = process.versions.node; const requiredMajorVersion = parseInt(currentVersion.split('.')[0], 10); const minimumMajorVersion = 12; if (requiredMajorVersion < minimumMajorVersion) { console.error(`Node.js v${currentVersion} is out of date and unsupported!`); console.error(`Please use Node.js v${minimumMajorVersion} or higher.`); process.exit(1); } import('./dist/index.js').then(({ main }) => main()); class='logo' rowspan='2'>cgit logo index : astro
Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/packages/renderers/renderer-vue/static-html.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2021-06-21Allow renderers configuration to update (#489)Gravatar Matthew Phillips 6-99/+219
2021-06-19[ci] yarn formatGravatar natemoo-re 2-2/+2
2021-06-18Skip scoped `astro-*` class if Astro component has no `<style>` (#497)Gravatar Nate Moore 5-2/+25
2021-06-18Fix horizontal scroll for starter template. (#498)Gravatar Laura Caroline 1-1/+1
2021-06-18update docs, remove reference to InifinityGravatar Fred K. Schott 1-3/+3
2021-06-17fixes counting tags to be closed when a component can't be rendered (#490)Gravatar ewatch 1-0/+1
2021-06-17Add @types/prettier to astro-prettier-plugin (#487)Gravatar Caleb Jasik 2-2/+10
2021-06-17optimize social image (#486)Gravatar Fred K. Schott 3-3/+3
2021-06-17fix: keyboard unable to target theme switcher (#488)Gravatar Kitto Khrangtong 1-1/+2
2021-06-17Update collections.md (#485)Gravatar Tony @ Navillus 1-1/+1
2021-06-17Update README.mdGravatar Fred K. Schott 1-1/+2
2021-06-17Fix README header aspect ratio (#482)Gravatar Dany Castillo 2-1/+6
2021-06-16Update the shape of data provided by `Astro.fetchContent("./*.md")` (#479)Gravatar Caleb Jasik 1-5/+15
2021-06-16[ci] yarn formatGravatar matthewp 1-0/+1
2021-06-16Version Packages (#470)Gravatar github-actions[bot] 11-23/+28
2021-06-16Fix race condition in build (#477)Gravatar Matthew Phillips 3-5/+10
2021-06-16Improvement/accessibility blog example (#475)Gravatar Brian Hinton 9-17/+25
2021-06-16[ci] yarn formatGravatar natemoo-re 1-3/+6
2021-06-16feat(#455): improve error logging inside of expressions (#476)Gravatar Nate Moore 2-10/+123
2021-06-16Fix typo, clarify layout section (#474)Gravatar Drew Powers 1-6/+4
2021-06-16Fix syntax errors in styling docs (#471)Gravatar Drew Powers 1-9/+17
2021-06-16Fix parser error on forward slash (#469)Gravatar Drew Powers 4-1/+30
2021-06-16[ci] yarn formatGravatar natemoo-re 2-0/+1
2021-06-16Fix VS Code extension (#467)Gravatar Nate Moore 54-22/+46
2021-06-16Version Packages (#466)Gravatar github-actions[bot] 15-29/+46
2021-06-16Add repository remotes for all astro packages (#458)Gravatar Caleb Jasik 8-0/+42
2021-06-16[ci] yarn formatGravatar matthewp 2-12/+13
2021-06-16Prevent HMR client from being part of bundle (#464)Gravatar Matthew Phillips 4-4/+23
2021-06-16Pass configured Tailwind config file to the `tailwindcss` plugin (#352)Gravatar Brad Cornes 5-5/+9
2021-06-16Version Packages (#450)Gravatar github-actions[bot] 10-27/+23
2021-06-16Fix issue with proxy imports not reloading on change (#462)Gravatar Matthew Phillips 2-5/+5
2021-06-16[ci] yarn formatGravatar matthewp 1-3/+3
2021-06-16docs: fixed ascii based folder strucure in dev.md (#461)Gravatar Nikhil Mehta 1-2/+5
2021-06-16Less verbose HMR script (#457)Gravatar Nurettin Kaya 4-6/+11
2021-06-15Handle script module resolution (#438)Gravatar Drew Powers 7-3/+68
2021-06-15Improve asset resolution in Astro (#437)Gravatar Drew Powers 12-32/+111
2021-06-15docs: update syntax docs (#449)Gravatar Nate Moore 1-19/+7
2021-06-15Fix typo (#441)Gravatar Jasper Nykänen 1-1/+1
2021-06-15Clarify docs suggesting that Astro may just randomly break your styles (#451)Gravatar Drew Powers 1-2/+3
2021-06-15Add .svelte to the tailwind config (#444)Gravatar Jeffrey Jose 1-1/+1
2021-06-15[ci] yarn formatGravatar natemoo-re 2-25/+24
2021-06-15Add `<>` fragment support for expressions (#433)Gravatar Nate Moore 6-21/+78
2021-06-15Version Packages (#446)Gravatar github-actions[bot] 9-14/+28