tags bundle
This commit is contained in:
@@ -1 +1,2 @@
|
||||
export * from './repository/';
|
||||
export * from './components/index.js';
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
@@ -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'),
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user