@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.
- package/README.md +5 -4
- 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
|
-
|
|
541
|
+
Format files:
|
|
542
542
|
|
|
543
543
|
```bash
|
|
544
|
-
pnpm
|
|
544
|
+
pnpm format
|
|
545
545
|
```
|
|
546
546
|
|
|
547
|
-
All pull requests must pass
|
|
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