@kyro-cms/admin 0.10.1 → 0.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kyro-cms/admin",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "engines": {
5
5
  "node": ">=22"
6
6
  },
@@ -195,26 +195,10 @@ export default debug;
195
195
  "kyro:config": resolvedConfig,
196
196
  },
197
197
  },
198
- build: {
199
- rollupOptions: {
200
- output: {
201
- manualChunks(id: string) {
202
- if (id.includes("@tiptap") || id.includes("prosemirror")) {
203
- return "vendor-tiptap";
204
- }
205
- },
206
- },
207
- },
208
- },
209
198
  optimizeDeps: {
210
199
  include: [
211
200
  '@kyro-cms/admin',
212
201
  'use-sync-external-store',
213
- '@tiptap/core', '@tiptap/react', '@tiptap/pm', '@tiptap/starter-kit',
214
- '@tiptap/extension-link', '@tiptap/extension-image', '@tiptap/extension-text-align',
215
- '@tiptap/extension-underline', '@tiptap/extension-highlight',
216
- '@tiptap/extension-task-list', '@tiptap/extension-task-item',
217
- '@tiptap/extension-text-style', '@tiptap/extension-color',
218
202
  ],
219
203
  exclude: ['debug', 'react/compiler-runtime'],
220
204
  },