@mdfriday/foundry 26.4.18 → 26.4.20

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.
@@ -2,6 +2,7 @@ import { WorkspaceFactory } from '@internal/domain/workspace';
2
2
  import { WorkspaceRepository, ProjectRepository, SnapshotRepository, FileSystemRepository } from '@internal/domain/workspace/repository';
3
3
  import { WorkspaceAppService } from '@internal/application/workspace';
4
4
  import { HttpClient as IdentityHttpClient } from '@internal/domain/identity';
5
+ import { PublishAppService } from '@internal/application/publish';
5
6
  import { IdentityAppService } from '@internal/application/identity';
6
7
  export declare function createWorkspaceFactory(repositories?: {
7
8
  workspaceRepo?: WorkspaceRepository;
@@ -17,4 +18,4 @@ export declare function createWorkspaceAppService(repositories?: {
17
18
  }): WorkspaceAppService;
18
19
  export declare function createIdentityService(workspacePath?: string): Promise<IdentityAppService>;
19
20
  export declare function createIdentityServiceForObsidian(workspacePath: string, httpClient: IdentityHttpClient): Promise<IdentityAppService>;
20
- export declare function createPublishAppService(): any;
21
+ export declare function createPublishAppService(): PublishAppService;
@@ -139,7 +139,7 @@ export declare const PATH_CONSTANTS: {
139
139
  readonly PATH_SEPARATOR: "/";
140
140
  readonly EXTENSION_SEPARATOR: ".";
141
141
  readonly LANGUAGE_SEPARATOR: ".";
142
- readonly SYSTEM_PATH_SEPARATOR: any;
142
+ readonly SYSTEM_PATH_SEPARATOR: "/" | "\\";
143
143
  readonly COMPONENT_FOLDER_CONTENT: "content";
144
144
  readonly COMPONENT_FOLDER_STATIC: "static";
145
145
  readonly COMPONENT_FOLDER_LAYOUTS: "layouts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdfriday/foundry",
3
- "version": "26.4.18",
3
+ "version": "26.4.20",
4
4
  "description": "The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -83,7 +83,7 @@
83
83
  "typescript": "^5.3.2"
84
84
  },
85
85
  "dependencies": {
86
- "@mdfriday/text-template": "^0.2.6",
86
+ "@mdfriday/text-template": "^26.4.1",
87
87
  "@types/js-yaml": "^4.0.9",
88
88
  "@types/markdown-it": "^13.0.7",
89
89
  "basic-ftp": "^5.2.0",