valaxy 0.26.1 → 0.26.3
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/client/composables/collections.ts +1 -1
- package/client/composables/decrypt.ts +6 -3
- package/client/define/collection.ts +1 -35
- package/client/index.d.ts +48 -0
- package/client/shims.d.ts +32 -4
- package/client/tsconfig.json +16 -0
- package/client/types/collection.ts +35 -0
- package/client/types/index.ts +2 -0
- package/dist/node/cli/index.mjs +2 -2
- package/dist/node/index.d.mts +336 -314
- package/dist/node/index.mjs +2 -2
- package/dist/shared/valaxy.BwiZu4ms.d.mts +832 -0
- package/dist/shared/{valaxy.DYu2a9p6.mjs → valaxy.D7OlaIFc.mjs} +303 -303
- package/dist/types/index.d.mts +9 -775
- package/index.d.ts +0 -1
- package/package.json +34 -28
- package/types/frontmatter/page.ts +1 -1
- package/types/index.ts +0 -1
- package/dist/shared/valaxy.D_ue8jlC.d.mts +0 -60
- package/shims.d.ts +0 -85
package/dist/node/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as ALL_ROUTE, E as EXCERPT_SEPARATOR, G as GLOBAL_STATE, P as PATHNAME_PROTOCOL_RE, V as ViteValaxyPlugins, b as build, c as cli, N as createServer, L as createValaxyPlugin, D as customElements, j as defaultSiteConfig, w as defaultValaxyConfig, F as defaultViteConfig, h as defineAddon, y as defineConfig, k as defineSiteConfig, u as defineTheme, f as defineValaxyAddon, x as defineValaxyConfig, t as defineValaxyTheme, g as generateClientRedirects,
|
|
1
|
+
export { C as ALL_ROUTE, E as EXCERPT_SEPARATOR, G as GLOBAL_STATE, P as PATHNAME_PROTOCOL_RE, V as ViteValaxyPlugins, b as build, c as cli, N as createServer, L as createValaxyPlugin, D as customElements, j as defaultSiteConfig, w as defaultValaxyConfig, F as defaultViteConfig, h as defineAddon, y as defineConfig, k as defineSiteConfig, u as defineTheme, f as defineValaxyAddon, x as defineValaxyConfig, t as defineValaxyTheme, O as encryptContent, g as generateClientRedirects, Q as getGitTimestamp, e as getIndexHtml, M as getServerInfoText, R as isExternal, U as isInstalledGlobally, S as isPath, v as loadConfigFromFile, A as mergeValaxyConfig, m as mergeViteConfigs, p as postProcessForSSG, I as processValaxyOptions, d as registerDevCommand, i as resolveAddonsConfig, Y as resolveImportPath, W as resolveImportUrl, J as resolveOptions, n as resolveSiteConfig, l as resolveSiteConfigFromRoot, o as resolveThemeConfigFromRoot, K as resolveThemeValaxyConfig, q as resolveUserThemeConfig, B as resolveValaxyConfig, z as resolveValaxyConfigFromRoot, r as run, s as ssgBuild, a as startValaxyDev, X as toAtFS, T as transformObject, H as version } from '../shared/valaxy.D7OlaIFc.mjs';
|
|
2
2
|
import 'node:path';
|
|
3
3
|
import 'fs-extra';
|
|
4
4
|
import 'consola/utils';
|
|
@@ -20,8 +20,8 @@ import 'ora';
|
|
|
20
20
|
import 'cross-spawn';
|
|
21
21
|
import 'mlly';
|
|
22
22
|
import 'resolve-global';
|
|
23
|
-
import 'node:fs/promises';
|
|
24
23
|
import 'js-yaml';
|
|
24
|
+
import 'node:fs/promises';
|
|
25
25
|
import 'dayjs';
|
|
26
26
|
import 'feed';
|
|
27
27
|
import 'markdown-it';
|