folder for package

This commit is contained in:
Niels Lyngsø
2023-06-05 21:50:56 +02:00
parent 5a18564fc9
commit 78679a0be3
9 changed files with 5 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { manifests as repositoryManifests } from './repository/manifests.js';
import { manifests as repositoryManifests } from './package/repository/manifests.js';
import { manifests as packageBuilderManifests } from './package-builder/manifests.js';
import { manifests as packageRepoManifests } from './package-repo/manifests.js';
import { manifests as packageSectionManifests } from './package-section/manifests.js';

View File

@@ -1,4 +1,4 @@
import { UmbPackageRepository } from '../../../repository/package.repository.js';
import { UmbPackageRepository } from '../../../package/repository/package.repository.js';
import type { UmbPackageWithMigrationStatus } from '../../../types.js';
import { html, css, customElement, state, repeat } from '@umbraco-cms/backoffice/external/lit';
import { combineLatest } from '@umbraco-cms/backoffice/external/rxjs';

View File

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

View File

@@ -0,0 +1 @@
export * from './package.repository.js';

View File

@@ -1,4 +1,4 @@
import type { UmbPackage } from '../types.js';
import type { UmbPackage } from '../../types.js';
import { ReplaySubject } from '@umbraco-cms/backoffice/external/rxjs';
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api';
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';