@zpress/core 0.4.0 → 0.6.0
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 +4 -2
- package/dist/index.d.ts +120 -618
- package/dist/index.mjs +26192 -443
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<img src="https://raw.githubusercontent.com/joggrdocs/zpress/main/assets/banner.svg" alt="zpress" width="90%" />
|
|
3
|
-
<p><strong>
|
|
3
|
+
<p><strong>Sync engine, asset generation, and core utilities for zpress.</strong></p>
|
|
4
4
|
|
|
5
5
|
<a href="https://github.com/joggrdocs/zpress/actions/workflows/ci.yml"><img src="https://github.com/joggrdocs/zpress/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI" /></a>
|
|
6
6
|
<a href="https://www.npmjs.com/package/@zpress/core"><img src="https://img.shields.io/npm/v/@zpress/core" alt="npm version" /></a>
|
|
@@ -16,13 +16,15 @@ npm install @zpress/core
|
|
|
16
16
|
|
|
17
17
|
## API
|
|
18
18
|
|
|
19
|
-
### Config
|
|
19
|
+
### Config (re-exported from `@zpress/config`)
|
|
20
20
|
|
|
21
21
|
| Export | Description |
|
|
22
22
|
| -------------- | ----------------------------------- |
|
|
23
23
|
| `defineConfig` | Type-safe config factory |
|
|
24
24
|
| `loadConfig` | Load and validate `zpress.config.*` |
|
|
25
25
|
|
|
26
|
+
See [@zpress/config](../config/README.md) for full config documentation.
|
|
27
|
+
|
|
26
28
|
### Sync Engine
|
|
27
29
|
|
|
28
30
|
| Export | Description |
|