@koehler8/cms 1.0.0-beta.5 → 1.0.0-beta.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vite-plugin.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koehler8/cms",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0-beta.6",
4
4
  "description": "Vertex CMS — lightweight, config-driven Vue 3 framework with theming, extensions, and SSG support",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/vite-plugin.js CHANGED
@@ -431,7 +431,7 @@ export default function cmsPlugin(options = {}) {
431
431
  // native ESM resolver cannot handle. Marking them as noExternal
432
432
  // tells Vite to bundle them during SSR so its Vue/JSON plugins
433
433
  // process the files instead of Node.
434
- noExternal: ['@koehler8/cms', ...extensionPackages],
434
+ noExternal: ['@koehler8/cms', ...themePackages, ...extensionPackages],
435
435
  },
436
436
  test: {
437
437
  environment: 'happy-dom',