@brillout/docpress 0.11.0 → 0.11.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/+config.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { config }
1
+ export { config as default }
2
2
 
3
3
  import type { Config, ImportString } from 'vike/types'
4
4
  import type { Exports } from './config/resolvePageContext'
@@ -8,7 +8,7 @@ import type { Config as DocpressConfig } from './types/Config'
8
8
  const config = {
9
9
  name: '@brillout/docpress',
10
10
  require: { vike: '>=0.4.222' },
11
- vite: viteConfig,
11
+ vite: viteConfig as Record<string, unknown>,
12
12
  prerender: { noExtraDir: true },
13
13
  onRenderHtml: 'import:@brillout/docpress/renderer/onRenderHtml:onRenderHtml',
14
14
  onRenderClient: 'import:@brillout/docpress/renderer/onRenderClient:onRenderClient',
package/dist/+config.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { config };
1
+ export { config as default };
2
2
  import type { ImportString } from 'vike/types';
3
3
  import type { Exports } from './config/resolvePageContext';
4
4
  import type { Config as DocpressConfig } from './types/Config';
@@ -7,7 +7,7 @@ declare const config: {
7
7
  require: {
8
8
  vike: string;
9
9
  };
10
- vite: import("vite").UserConfig;
10
+ vite: Record<string, unknown>;
11
11
  prerender: {
12
12
  noExtraDir: true;
13
13
  };
package/dist/+config.js CHANGED
@@ -1,4 +1,4 @@
1
- export { config };
1
+ export { config as default };
2
2
  import { viteConfig } from './vite.config.js';
3
3
  var config = {
4
4
  name: '@brillout/docpress',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brillout/docpress",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@brillout/picocolors": "^1.0.10",