@raystack/chronicle 0.11.0 → 0.11.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/dist/cli/index.js CHANGED
@@ -406,7 +406,8 @@ async function createViteConfig(options) {
406
406
  plugins: [
407
407
  nitro({
408
408
  serverDir: path6.resolve(packageRoot, "src/server"),
409
- ...preset && { preset }
409
+ ...preset && { preset },
410
+ ignore: ["**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"]
410
411
  }),
411
412
  mdx({
412
413
  default: defineFumadocsConfig({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raystack/chronicle",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Config-driven documentation framework",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -73,6 +73,7 @@ export async function createViteConfig(
73
73
  nitro({
74
74
  serverDir: path.resolve(packageRoot, 'src/server'),
75
75
  ...(preset && { preset }),
76
+ ignore: ['**/*.test.ts', '**/*.test.tsx', '**/*.spec.ts', '**/*.spec.tsx'],
76
77
  }),
77
78
  mdx({
78
79
  default: defineFumadocsConfig({