site-index 0.1.0 → 0.1.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 +11 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -2,7 +2,12 @@
2
2
 
3
3
  CLI for creating site-index modules and generating/checking sitemap and robots.txt artifacts.
4
4
 
5
- [Repository README](../../README.md)
5
+ [![npm version](https://img.shields.io/npm/v/site-index)](https://www.npmjs.com/package/site-index)
6
+ [![Code Quality](https://github.com/Deasilsoft/site-index/actions/workflows/code-quality.yml/badge.svg?branch=main)](https://github.com/Deasilsoft/site-index/actions/workflows/code-quality.yml)
7
+ [![Code Coverage](https://codecov.io/gh/Deasilsoft/site-index/graph/badge.svg?flag=site-index)](https://codecov.io/gh/Deasilsoft/site-index)
8
+ [![Socket](https://badge.socket.dev/npm/package/site-index)](https://socket.dev/npm/package/site-index)
9
+
10
+ [Repository README](../../)
6
11
 
7
12
  ## Install
8
13
 
@@ -24,8 +29,8 @@ Use `site-index` when you want command-line workflows for:
24
29
 
25
30
  ## When not to use
26
31
 
27
- - Use [`@site-index/vite-plugin`](../@site-index/vite-plugin/README.md) for Vite-native integration.
28
- - Use [`@site-index/core`](../@site-index/core/README.md) for custom programmatic pipelines.
32
+ - Use [`@site-index/vite-plugin`](../@site-index/vite-plugin/) for Vite-native integration.
33
+ - Use [`@site-index/core`](../@site-index/core/) for custom programmatic pipelines.
29
34
 
30
35
  ## Global options
31
36
 
@@ -102,6 +107,6 @@ npm run cli -- build --site-url https://example.com
102
107
 
103
108
  `site-index` is the user-facing CLI package built on:
104
109
 
105
- - [`@site-index/vite-runtime`](../@site-index/vite-runtime/README.md)
106
- - [`@site-index/core`](../@site-index/core/README.md)
107
- - [`@site-index/observability`](../@site-index/observability/README.md)
110
+ - [`@site-index/vite-runtime`](../@site-index/vite-runtime/)
111
+ - [`@site-index/core`](../@site-index/core/)
112
+ - [`@site-index/observability`](../@site-index/observability/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "site-index",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI for generating sitemap and robots.txt artifacts from site-index modules.",
5
5
  "keywords": [
6
6
  "site-index",
@@ -44,9 +44,9 @@
44
44
  "typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json"
45
45
  },
46
46
  "dependencies": {
47
- "@site-index/core": "0.1.0",
48
- "@site-index/observability": "0.1.0",
49
- "@site-index/vite-runtime": "0.1.0",
47
+ "@site-index/core": "0.1.2",
48
+ "@site-index/observability": "0.1.2",
49
+ "@site-index/vite-runtime": "0.1.2",
50
50
  "cac": "^7.0.0",
51
51
  "vite": "^8.0.12",
52
52
  "zod": "^4.4.3"