Skip to content

v1.2.1

Latest
Compare
Choose a tag to compare
@JakiChen JakiChen released this 04 Dec 03:07

Minor Updates

  • peerDependencies update "astro": "^4.14.0 || ^5.0.0"

5.+ does not seem to have @astrojs/check installed by default, it is recommended to install it to improve the development experience.

This will allow you to check if the SVG file is missing or misspelled, or invalid when you build

"scripts": {
    "dev": "astro dev",
    "build": "astro check && astro build",
    "preview": "astro preview",
    "astro": "astro"
  },
  "dependencies": {},
  "devDependencies": {
    "@astrojs/check": "^0.9.4",
    "astro": "^5.0.1",
    "astro-svgs": "^1.2.1"
  }