site-index 0.1.0 → 0.1.1
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 +11 -6
- 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
|
-
[
|
|
5
|
+
[](https://www.npmjs.com/package/site-index)
|
|
6
|
+
[](https://github.com/Deasilsoft/site-index/actions/workflows/code-quality.yml)
|
|
7
|
+
[](https://codecov.io/gh/Deasilsoft/site-index)
|
|
8
|
+
[](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/
|
|
28
|
-
- Use [`@site-index/core`](../@site-index/core/
|
|
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/
|
|
106
|
-
- [`@site-index/core`](../@site-index/core/
|
|
107
|
-
- [`@site-index/observability`](../@site-index/observability/
|
|
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.
|
|
3
|
+
"version": "0.1.1",
|
|
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.
|
|
48
|
-
"@site-index/observability": "0.1.
|
|
49
|
-
"@site-index/vite-runtime": "0.1.
|
|
47
|
+
"@site-index/core": "0.1.1",
|
|
48
|
+
"@site-index/observability": "0.1.1",
|
|
49
|
+
"@site-index/vite-runtime": "0.1.1",
|
|
50
50
|
"cac": "^7.0.0",
|
|
51
51
|
"vite": "^8.0.12",
|
|
52
52
|
"zod": "^4.4.3"
|