@dpuse/dpuse-development 0.3.549 → 0.3.550

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.
@@ -1,4 +1,5 @@
1
1
  export declare function buildProject(): Promise<void>;
2
2
  export declare function releaseProject(): Promise<void>;
3
+ export declare function publishProject(): Promise<void>;
3
4
  export declare function syncProjectWithGitHub(): Promise<void>;
4
5
  export declare function testProject(): void;
@@ -6,4 +6,4 @@ export { documentOperations } from './actions/documentOperations';
6
6
  export { formatCode } from './actions/formatCode';
7
7
  export { lintCode } from './actions/lintCode';
8
8
  export { uploadDirectoryToR2 } from './utilities/cloudflare';
9
- export { buildProject, releaseProject, syncProjectWithGitHub, testProject } from './actions/manageProject';
9
+ export { buildProject, publishProject, releaseProject, syncProjectWithGitHub, testProject } from './actions/manageProject';
@@ -1,9 +1,9 @@
1
1
  import { Dirent, ObjectEncodingOptions, Stats } from 'node:fs';
2
2
  interface ModuleTypeConfig {
3
3
  idPrefix: string;
4
- typeId: 'app' | 'api' | 'connector' | 'context' | 'development' | 'engine' | 'eslint' | 'kb' | 'presenter' | 'recipe' | 'resources' | 'shared' | 'tool';
5
- isPublished: boolean;
6
- uploadGroupName: 'connectors' | 'contexts' | 'engine' | 'presenters' | 'recipes' | 'tools' | undefined;
4
+ typeId: 'app' | 'api' | 'connector' | 'context' | 'cookbook' | 'development' | 'engine' | 'eslint' | 'kb' | 'presenter' | 'resources' | 'shared' | 'tool';
5
+ publishedTo: 'dpuse' | 'npm' | undefined;
6
+ uploadGroupName: 'connectors' | 'contexts' | 'cookbooks' | 'engine' | 'presenters' | 'tools' | undefined;
7
7
  }
8
8
  export declare function clearDirectory(label: string | undefined, directoryPath: string): Promise<void>;
9
9
  export declare function getDirectoryEntries(path: string): Promise<string[]>;
package/eslint.config.ts CHANGED
@@ -1,4 +1,4 @@
1
- // ── External Dependencies
1
+ // ── External Dependencies & Registrations
2
2
  import type { Linter } from 'eslint';
3
3
  import pluginComments from '@eslint-community/eslint-plugin-eslint-comments';
4
4
  import { flatConfigs as pluginImportFlatConfigs } from 'eslint-plugin-import-x';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpuse/dpuse-development",
3
- "version": "0.3.549",
3
+ "version": "0.3.550",
4
4
  "private": false,
5
5
  "description": "Actions for managing DPUse projects.",
6
6
  "license": "MIT",