umbraco-bundle

A Bundle is an extension type that points to a single JavaScript file that exports or re-exports Extension Manifests written in JavaScript/TypeScript. It serves as a container for grouping multiple extension manifests together, allowing you to declare manifests in code rather than JSON and organize extensions in a modular way.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "umbraco-bundle" with this command: npx skills add umbraco/umbraco-cms-backoffice-skills/umbraco-umbraco-cms-backoffice-skills-umbraco-bundle

Umbraco Bundle

What is it?

A Bundle is an extension type that points to a single JavaScript file that exports or re-exports Extension Manifests written in JavaScript/TypeScript. It serves as a container for grouping multiple extension manifests together, allowing you to declare manifests in code rather than JSON and organize extensions in a modular way.

Documentation

Always fetch the latest docs before implementing:

Workflow

  • Fetch docs - Use WebFetch on the URLs above

  • Ask questions - What extensions to bundle? TypeScript or JavaScript?

  • Generate files - Create manifest + bundle file based on latest docs

  • Explain - Show what was created and how to test

Minimal Examples

Manifest (umbraco-package.json)

{ "name": "My Package", "version": "1.0.0", "extensions": [ { "type": "bundle", "alias": "My.Package.Bundle", "name": "My Package Bundle", "js": "/App_Plugins/MyPackage/manifests.js" } ] }

Bundle File (manifests.ts)

import type { UmbExtensionManifest } from '@umbraco-cms/backoffice/extension-api';

export const manifests: Array<UmbExtensionManifest> = [ { type: 'dashboard', name: 'My Dashboard', alias: 'My.Dashboard', element: () => import('./dashboard.js'), weight: 900, meta: { label: 'My Dashboard', pathname: 'my-dashboard', }, conditions: [ { alias: 'Umb.Condition.SectionAlias', match: 'Umb.Section.Content', }, ], }, { type: 'headerApp', name: 'My Header App', alias: 'My.HeaderApp', element: () => import('./header-app.js'), meta: { label: 'My App', icon: 'icon-heart', }, }, ];

Re-exporting from Multiple Files

// manifests.ts export * from './dashboards/manifests.js'; export * from './header-apps/manifests.js'; export * from './sections/manifests.js';

That's it! Always fetch fresh docs, keep examples minimal, generate complete working code.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

umbraco-openapi-client

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

umbraco-skill-code-analyzer

No summary provided by upstream source.

Repository SourceNeeds Review
General

umbraco-backoffice

No summary provided by upstream source.

Repository SourceNeeds Review
General

umbraco-dashboard

No summary provided by upstream source.

Repository SourceNeeds Review