tags bundle

This commit is contained in:
Niels Lyngsø
2023-06-27 12:53:39 +02:00
parent e15ee7948e
commit 3f955bb37b
3 changed files with 5 additions and 11 deletions

View File

@@ -1 +1,2 @@
export * from './repository/';
export * from './components/index.js';

View File

@@ -1,11 +1,4 @@
import { manifests as repositoryManifests } from './repository/manifests.js';
import { manifests as propertyEditorManifests } from './property-editors/manifests.js';
import { UmbEntryPointOnInit } from '@umbraco-cms/backoffice/extension-api';
import './components/index.js';
export const manifests = [...repositoryManifests, ...propertyEditorManifests];
export const onInit: UmbEntryPointOnInit = (host, extensionRegistry) => {
extensionRegistry.registerMany(manifests);
};

View File

@@ -2,9 +2,9 @@ export const name = 'Umbraco.Core.UserManagement';
export const version = '0.0.1';
export const extensions = [
{
name: 'Tags Management Entry Point',
alias: 'Umb.EntryPoint.TagsManagement',
type: 'entryPoint',
loader: () => import('./package-entry-point.js'),
name: 'Tags Management Bundle',
alias: 'Umb.Bundle.TagsManagement',
type: 'bundle',
loader: () => import('./manifests.js'),
},
];