@mannisto/astro-metadata 1.0.0-beta.1 → 1.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -530,7 +530,7 @@ pnpm test:all
530
530
 
531
531
  ### Linting and formatting
532
532
 
533
- This project uses [Biome](https://biomejs.dev) for linting and formatting.
533
+ This project uses [Biome](https://biomejs.dev) for linting and [Prettier](https://prettier.io) for formatting.
534
534
 
535
535
  Check for issues:
536
536
 
@@ -538,13 +538,13 @@ Check for issues:
538
538
  pnpm check
539
539
  ```
540
540
 
541
- Auto-fix issues:
541
+ Format files:
542
542
 
543
543
  ```bash
544
- pnpm check:fix
544
+ pnpm format
545
545
  ```
546
546
 
547
- All pull requests must pass the Biome check and unit tests before merging. These are enforced automatically via GitHub Actions.
547
+ All pull requests must pass `pnpm check` before merging. This is enforced automatically via GitHub Actions.
548
548
 
549
549
  ### Project structure
550
550
 
@@ -565,6 +565,7 @@ astro-metadata/
565
565
  playwright.config.ts
566
566
  vitest.config.ts
567
567
  biome.json
568
+ prettier.config.ts
568
569
  ```
569
570
 
570
571
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mannisto/astro-metadata",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Astro components for managing your page head — metadata, social sharing, favicons, and SEO.",
5
5
  "license": "MIT",
6
6
  "type": "module",